You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
429 B
17 lines
429 B
2 years ago
|
// import { PluginObject } from 'vue'
|
||
|
import WkbTag from './src/tag.vue'
|
||
|
|
||
|
// const injectInstallObject: PluginObject<null> = {
|
||
|
// install(Vue) {
|
||
|
// Vue.component('wkb-tag', WkbTag)
|
||
|
// },
|
||
|
// pluginName: 'wkb-tag'
|
||
|
// }
|
||
|
|
||
|
// const WkbComponent = Object.assign(WkbTag, injectInstallObject)
|
||
|
|
||
|
// if (typeof window !== 'undefined' && window.Vue) {
|
||
|
// injectInstallObject.install(window.Vue as any)
|
||
|
// }
|
||
|
|
||
|
export default WkbTag
|