postdischarge-ui/src/components/xinelu/Git/index.vue

22 lines
302 B
Vue

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