仪表盘
版本库
文件存储
活动
搜索
登录
main
/
lbqms-ui
兰宝车间质量管理系统-前端
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
update element-plus 2.7.5 => 2.7.8 update vue 3.4.25 => 3.4.34 update vite ...
疯狂的狮子Li
2024-07-27
6c49b47344d4ccabc05f5ece7bb147bcc3035f10
[lbqms-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>