fix: compatibility with vetur (#1700)

This commit is contained in:
花裤衩 2020-05-04 21:30:58 +08:00 committed by GitHub
parent 9580c43a8e
commit fc26c3106f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 12 deletions

View File

@ -148,9 +148,9 @@ export default {
_this.fullscreen = e.state _this.fullscreen = e.state
}) })
}, },
//it will try to keep these URLs intact // it will try to keep these URLs intact
//https://www.tiny.cloud/docs-3x/reference/configuration/Configuration3x@convert_urls/ // https://www.tiny.cloud/docs-3x/reference/configuration/Configuration3x@convert_urls/
//https://stackoverflow.com/questions/5196205/disable-tinymce-absolute-to-relative-url-conversions // https://stackoverflow.com/questions/5196205/disable-tinymce-absolute-to-relative-url-conversions
convert_urls: false convert_urls: false
// //
// images_dataimg_filter(img) { // images_dataimg_filter(img) {

View File

@ -1,7 +1,5 @@
<template> <template>
<!-- eslint-disable vue/require-component-is --> <component :is="type" v-bind="linkProps(to)">
<component v-bind="linkProps(to)">
<slot /> <slot />
</component> </component>
</template> </template>
@ -16,19 +14,28 @@ export default {
required: true required: true
} }
}, },
computed: {
isExternal() {
return isExternal(this.to)
},
type() {
if (this.isExternal) {
return 'a'
}
return 'router-link'
}
},
methods: { methods: {
linkProps(url) { linkProps(to) {
if (isExternal(url)) { if (this.isExternal) {
return { return {
is: 'a', href: to,
href: url,
target: '_blank', target: '_blank',
rel: 'noopener' rel: 'noopener'
} }
} }
return { return {
is: 'router-link', to: to
to: url
} }
} }
} }