ggpx/ruoyi-ui/src/layout/components/Sidebar/Link.vue

44 lines
710 B
Vue
Raw Normal View History

2019-10-08 09:14:38 +08:00
<template>
2020-05-30 15:04:11 +08:00
<component :is="type" v-bind="linkProps(to)">
2019-10-08 09:14:38 +08:00
<slot />
</component>
</template>
<script>
import { isExternal } from '@/utils/validate'
export default {
props: {
to: {
2021-09-08 09:28:23 +08:00
type: [String, Object],
2019-10-08 09:14:38 +08:00
required: true
}
},
2020-05-30 15:04:11 +08:00
computed: {
isExternal() {
return isExternal(this.to)
},
type() {
if (this.isExternal) {
return 'a'
}
return 'router-link'
}
},
2019-10-08 09:14:38 +08:00
methods: {
2020-05-30 15:04:11 +08:00
linkProps(to) {
if (this.isExternal) {
2019-10-08 09:14:38 +08:00
return {
2020-05-30 15:04:11 +08:00
href: to,
2019-10-08 09:14:38 +08:00
target: '_blank',
rel: 'noopener'
}
}
return {
2020-05-30 15:04:11 +08:00
to: to
2019-10-08 09:14:38 +08:00
}
}
}
}
</script>