dashboard
repositories
filestore
activity
search
login
main
/
oceanScienceInspectWeb
深海科学与工程研究所安全巡检系统
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
修改回显
祖安之光
2026-03-31
36a315121f466fd06cf9b13b2ffb492d98aaa46d
[oceanScienceInspectWeb.git]
/
src
/
components
/
RuoYi
/
Doc
/
index.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
<template>
<div>
<svg-icon icon-class="question" @click="goto" />
</div>
</template>
<script setup>
const url = ref('http://doc.ruoyi.vip/ruoyi-vue');
function goto() {
window.open(url.value)
}
</script>