dashboard
repositories
filestore
activity
search
login
main
/
multiSystemPlatformWeb
多体系建设信息化条统-前端
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
修改新增
祖安之光
2026-02-02
98bdbb0c3bf60c411f225a88989dc0192aed8735
[multiSystemPlatformWeb.git]
/
src
/
components
/
RuoYi
/
Git
/
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/y_project/RuoYi-Vue');
function goto() {
window.open(url.value)
}
</script>