深海科学与工程研究所安全巡检系统
祖安之光
2026-03-18 53a4a074f3e59efb05b2e5ca76d364f53939d957
1
2
3
4
5
6
7
8
9
10
11
12
13
<template>
  <div>
    <svg-icon icon-class="github" @click="goto" />
  </div>
</template>
 
<script setup>
const url = ref('https://gitee.com/y_project/RuoYi-Vue');
 
function goto() {
  window.open(url.value)
}
</script>