RuoYi-Vue-Plus/ruoyi-ui/src/components/RuoYi/Doc/index.vue
2023-03-23 14:02:37 +08:00

22 lines
301 B
Vue

<template>
<div>
<svg-icon icon-class="question" @click="goto" />
</div>
</template>
<script>
export default {
name: 'RuoYiDoc',
data() {
return {
url: 'https://javalionli.gitee.io/plus-doc'
}
},
methods: {
goto() {
window.open(this.url)
}
}
}
</script>