38 lines
593 B
Vue
38 lines
593 B
Vue
|
|
<template>
|
|
<!-- eslint-disable vue/require-component-is -->
|
|
<component v-bind="linkProps(to)">
|
|
<slot />
|
|
<slot name="title" />
|
|
</component>
|
|
</template>
|
|
|
|
<script>
|
|
import { isExternal } from '@/utils/validate'
|
|
|
|
export default {
|
|
props: {
|
|
to: {
|
|
type: String,
|
|
required: true
|
|
}
|
|
},
|
|
methods: {
|
|
linkProps(url) {
|
|
if (isExternal(url)) {
|
|
return {
|
|
is: 'a',
|
|
href: url,
|
|
target: '_blank',
|
|
rel: 'noopener'
|
|
}
|
|
}
|
|
return {
|
|
is: 'router-link',
|
|
to: url
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|