e5b57447
杨鑫
'分包问卷'
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<template>
<component :is="type" v-bind="linkProps(to)">
<slot />
</component>
</template>
<script>
import { isExternal } from '@/utils/validate'
export default {
props: {
to: {
type: String,
required: true
}
},
computed: {
|
d64cd58f
wesley88
上传验收小程序
|
18
|
isExternal () {
|
e5b57447
杨鑫
'分包问卷'
|
19
20
|
return isExternal(this.to)
},
|
d64cd58f
wesley88
上传验收小程序
|
21
|
type () {
|
e5b57447
杨鑫
'分包问卷'
|
22
23
24
25
26
27
28
|
if (this.isExternal) {
return 'a'
}
return 'router-link'
}
},
methods: {
|
d64cd58f
wesley88
上传验收小程序
|
29
|
linkProps (to) {
|
e5b57447
杨鑫
'分包问卷'
|
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
if (this.isExternal) {
return {
href: to,
target: '_blank',
rel: 'noopener'
}
}
return {
to: to
}
}
}
}
</script>
|