仪表盘
版本库
文件存储
活动
搜索
登录
main
/
lbqms-ui
兰宝车间质量管理系统-前端
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
update 优化 ts检查改为非严格 提高友好型降低开发难度
疯狂的狮子Li
2023-12-23
20b7819f110b9fca7464a2916ad0015abf579fbc
[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>