多体系建设信息化条统-前端
zhouwx
2025-12-12 ff1169ac5114c68e96c5686a0caa5d69d8a60b8a
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>