ggpx/ruoyi-ui/src/components/RuoYi/Doc/index.vue
2021-11-24 14:47:24 +08:00

21 lines
314 B
Vue

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