fix: temporarily for compatibility with vetur

This commit is contained in:
Pan 2019-03-13 10:58:22 +08:00
parent 9574643e92
commit e8a151cc64
1 changed files with 16 additions and 8 deletions

View File

@ -1,7 +1,6 @@
<template> <template>
<!-- eslint-disable vue/require-component-is --> <component :is="type" v-bind="linkProps(to)">
<component v-bind="linkProps(to)">
<slot/> <slot/>
</component> </component>
</template> </template>
@ -16,19 +15,28 @@ export default {
required: true required: true
} }
}, },
computed: {
isExternal() {
return isExternal(this.to)
},
type() {
if (this.isExternal) {
return 'a'
}
return 'router-link'
}
},
methods: { methods: {
linkProps(url) { linkProps(to) {
if (isExternal(url)) { if (this.isExternal) {
return { return {
is: 'a', href: to,
href: url,
target: '_blank', target: '_blank',
rel: 'noopener' rel: 'noopener'
} }
} }
return { return {
is: 'router-link', to: to
to: url
} }
} }
} }