Former-commit-id: 5f938748efeb16f6752d86fb7ac9402270ade8eb Former-commit-id: 1f6e716ef58f4b84a032152b190e3e3907c3b673 Former-commit-id: e488bf52f103d1c7529bdff7cbcd000531e07410
36 lines
623 B
Vue
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>
|
|
|