Blame view

wenjuan/src/layout/components/Sidebar/Link.vue 660 Bytes
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: {
b12ba7ef   杨鑫   '最新'
18
      isExternal () {
e5b57447   杨鑫   '分包问卷'
19
20
        return isExternal(this.to)
      },
b12ba7ef   杨鑫   '最新'
21
      type () {
e5b57447   杨鑫   '分包问卷'
22
23
24
25
26
27
28
        if (this.isExternal) {
          return 'a'
        }
        return 'router-link'
      }
    },
    methods: {
b12ba7ef   杨鑫   '最新'
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>