refine code
This commit is contained in:
		@@ -1,5 +1,5 @@
 | 
			
		||||
<template>
 | 
			
		||||
  <svg :class="svgClass" aria-hidden="true">
 | 
			
		||||
  <svg :class="svgClass" aria-hidden="true" v-on="$listeners">
 | 
			
		||||
    <use :xlink:href="iconName"/>
 | 
			
		||||
  </svg>
 | 
			
		||||
</template>
 | 
			
		||||
 
 | 
			
		||||
@@ -1,6 +1,6 @@
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <!-- eslint-disable vue/require-component-is-->
 | 
			
		||||
  <!-- eslint-disable vue/require-component-is -->
 | 
			
		||||
  <component v-bind="linkProps(to)">
 | 
			
		||||
    <slot/>
 | 
			
		||||
  </component>
 | 
			
		||||
@@ -17,11 +17,8 @@ export default {
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  methods: {
 | 
			
		||||
    isExternalLink(routePath) {
 | 
			
		||||
      return isExternal(routePath)
 | 
			
		||||
    },
 | 
			
		||||
    linkProps(url) {
 | 
			
		||||
      if (this.isExternalLink(url)) {
 | 
			
		||||
      if (isExternal(url)) {
 | 
			
		||||
        return {
 | 
			
		||||
          is: 'a',
 | 
			
		||||
          href: url,
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user