index.vue
308 Bytes
<template>
<div>
<svg-icon icon-class="github" @click="goto"/>
</div>
</template>
<script>
export default {
name: 'HuaHengGit',
data() {
return {
url: 'http://172.16.29.40:8010/wms/wms-cloud-ui.git'
}
},
methods: {
goto() {
window.open(this.url)
}
}
}
</script>