dashboard
repositories
filestore
activity
search
login
main
/
fireworkEnterpriseSideWeb
烟花爆竹批发企业仓库安全风险监测前端
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
许可证二维码
马宇豪
2025-04-29
922525505b92f1c3d37c3e5512da254b3dbcc475
[fireworkEnterpriseSideWeb.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>