vue3.0 集中 导出组件
Posted 一吃三大碗
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue3.0 集中 导出组件相关的知识,希望对你有一定的参考价值。
import ActiveControl from "./activeControl.vue";
import PlanControl from "./planControl.vue";
import RelationPlan from "./relationPlan.vue";
(ActiveControl as any).install = (Vue: any) => {
Vue.component(ActiveControl.name, ActiveControl)
}
(PlanControl as any).install = (Vue: any) => {
Vue.component(PlanControl.name, PlanControl)
}
(RelationPlan as any).install = (Vue: any) => {
Vue.component(RelationPlan.name, RelationPlan)
}
export {
ActiveControl,
PlanControl,
RelationPlan
}
以上是关于vue3.0 集中 导出组件的主要内容,如果未能解决你的问题,请参考以下文章
vue3.0 Composition API 上手初体验 vue组件的具名插槽 slot 的变化