|
|
@ -1,7 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
<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 +14,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
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|