-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathLink.vue
66 lines (60 loc) · 1.27 KB
/
Link.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<script>
import { ensureExt, isExternal, isMailto, isTel } from '@/assets/js/util'
export default {
name: 'Link',
props: {
item: {
type: Object,
required: true,
},
onClick: {
type: Function,
default: () => {},
},
},
computed: {
link() {
return ensureExt(this.item.link)
},
exact() {
return this.link === '/'
},
isNonHttpURI() {
return isMailto(this.link) || isTel(this.link)
},
isBlankTarget() {
return this.target === '_blank'
},
isInternal() {
return !isExternal(this.link) && !this.isBlankTarget
},
target() {
if (this.isNonHttpURI)
return null
if (this.item.target)
return this.item.target
return isExternal(this.link) ? '_blank' : ''
},
rel() {
if (this.isNonHttpURI)
return null
if (this.item.rel)
return this.item.rel
return this.isBlankTarget ? 'noopener noreferrer' : ''
},
},
}
</script>
<template>
<NuxtLink
v-if="isInternal"
:to="link"
:exact="exact"
@click.native="onClick(item)"
>
<slot>{{ item.text }}</slot>
</NuxtLink>
<a v-else :href="link" :target="target" :rel="rel" @click="onClick(item)">
<slot>{{ item.text }}</slot>
</a>
</template>