ggpx/ruoyi-ui/src/components/RuoYi/Doc/index.vue

21 lines
313 B
Vue
Raw Normal View History

2020-02-24 09:28:16 +08:00
<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>