fix: remove eslint and prettier warnings
This commit is contained in:
@@ -1,16 +1,20 @@
|
||||
<template>
|
||||
<CCallout color="info" class="bg-white">
|
||||
{{content
|
||||
{{
|
||||
content
|
||||
? content
|
||||
: `A Vue ${name} component ${
|
||||
plural ? 'have' : 'has'
|
||||
} been created as a native Vue.js version
|
||||
of Bootstrap ${name}. ${name} ${plural ? 'are' : 'is'} delivered with some new features,
|
||||
variants, and unique design that matches CoreUI Design System requirements.`}}
|
||||
of Bootstrap ${name}. ${name} ${
|
||||
plural ? 'are' : 'is'
|
||||
} delivered with some new features,
|
||||
variants, and unique design that matches CoreUI Design System requirements.`
|
||||
}}
|
||||
<br />
|
||||
<br />
|
||||
For more information please visit our official
|
||||
<CLink :href="href" target="_blank">
|
||||
<CLink :href="url" target="_blank">
|
||||
documentation of CoreUI Components Library for Vue.js
|
||||
</CLink>
|
||||
.
|
||||
@@ -40,10 +44,10 @@ export default {
|
||||
plural: Boolean,
|
||||
},
|
||||
setup(props) {
|
||||
const href = `https://coreui.io/vue/docs/${packageJson.config.coreui_library_short_version}/${props.href}`
|
||||
const url = `https://coreui.io/vue/docs/${packageJson.config.coreui_library_short_version}/${props.url}`
|
||||
|
||||
return {
|
||||
href,
|
||||
url,
|
||||
}
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user