UNPKG

vue-fabric

Version:
10 lines (8 loc) 305 B
import FabricComponent from './fabric.vue'; const Fabric = { install: function (Vue) { // 核心部分,在我们使用Vue.use()时,自动调用的是install,而install导出的必须是的组件 Vue.component(FabricComponent.name, FabricComponent); } }; export default Fabric;