YunaiV d50fa8ed22 1. 增加 swagger 菜单
2. 增加 spring boot admin 菜单
2021-02-20 16:17:26 +08:00

22 lines
323 B
Vue

<template>
<div>
<svg-icon icon-class="github" @click="goto"/>
</div>
</template>
<script>
export default {
name: 'YudaoGit',
data() {
return {
url: 'https://github.com/YunaiV/ruoyi-vue-proe'
}
},
methods: {
goto() {
window.open(this.url)
}
}
}
</script>