mirror of
https://gitee.com/dromara/RuoYi-Cloud-Plus.git
synced 2026-05-11 14:22:08 +08:00
22 lines
320 B
Vue
22 lines
320 B
Vue
<template>
|
|
<div>
|
|
<svg-icon icon-class="github" @click="goto" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'RuoYi-Cloud-Plus-Git',
|
|
data() {
|
|
return {
|
|
url: 'https://gitee.com/JavaLionLi/RuoYi-Cloud-Plus'
|
|
}
|
|
},
|
|
methods: {
|
|
goto() {
|
|
window.open(this.url)
|
|
}
|
|
}
|
|
}
|
|
</script>
|