Commit b74ab40e authored by Pan's avatar Pan

refine code

parent 00941628
<template> <template>
<svg :class="svgClass" aria-hidden="true"> <svg :class="svgClass" aria-hidden="true" v-on="$listeners">
<use :xlink:href="iconName"/> <use :xlink:href="iconName"/>
</svg> </svg>
</template> </template>
......
<template> <template>
<!-- eslint-disable vue/require-component-is--> <!-- eslint-disable vue/require-component-is -->
<component v-bind="linkProps(to)"> <component v-bind="linkProps(to)">
<slot/> <slot/>
</component> </component>
...@@ -17,11 +17,8 @@ export default { ...@@ -17,11 +17,8 @@ export default {
} }
}, },
methods: { methods: {
isExternalLink(routePath) {
return isExternal(routePath)
},
linkProps(url) { linkProps(url) {
if (this.isExternalLink(url)) { if (isExternal(url)) {
return { return {
is: 'a', is: 'a',
href: url, href: url,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment