21 lines
318 B
Vue
21 lines
318 B
Vue
<template>
|
|
<div>
|
|
<svg-icon icon-class="github" @click="goto"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'RuoYiGit',
|
|
data() {
|
|
return {
|
|
url: 'https://gitee.com/y_project/RuoYi-Vue'
|
|
}
|
|
},
|
|
methods: {
|
|
goto() {
|
|
window.open(this.url)
|
|
}
|
|
}
|
|
}
|
|
</script> |