Files
mes-ui-d2/src/components/demo/GithubLink/index.vue
李杨 8ca39154e1 no message
Former-commit-id: 5f938748efeb16f6752d86fb7ac9402270ade8eb
Former-commit-id: 1f6e716ef58f4b84a032152b190e3e3907c3b673
Former-commit-id: e488bf52f103d1c7529bdff7cbcd000531e07410
2018-02-14 00:16:45 +08:00

36 lines
623 B
Vue

<i18n src="./lang.json"></i18n>
<template>
<el-tooltip :content="url" :placement="tooltipPlacement">
<a :href="url" target="_blank" class="link">
{{$t('label')}}
<i class="fa fa-github"></i>
</a>
</el-tooltip>
</template>
<script>
export default {
props: {
url: {
type: String,
required: false,
default: 'https://github.com/FairyEver'
},
tooltipPlacement: {
type: String,
required: false,
default: 'top-end'
}
}
}
</script>
<style lang="scss" scoped>
@import '~@/assets/style/unit/_color.scss';
.link {
color: $color-primary;
}
</style>