21 lines
314 B
Vue
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> |