公告板
版本库
filestore
活动
搜索
登录
戚荣
/
qyspzw-ui
跨网文件传输互联网前端
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
Merge branch 'master' of http://42.193.1.25:9521/r/~qirong/qyspzw-ui
zhanghua
2024-11-14
c3f8bae626cb555db6d55077eaa59d10fd6e07ee
[~qirong/qyspzw-ui.git]
/
src
/
components
/
RuoYiGit
/
index.vue
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/dromara/RuoYi-Vue-Plus');
function goto() {
window.open(url.value)
}
</script>