赞
踩
import Vue from "vue"
//获取到所有components文件下的index.vue组件信息
const componentsMap = require.context('../components',true,/index.vue$/)
//遍历一个一个注册组件
componentsMap.keys().forEach(key=>{
const componentscofig = componentsMap(key).default
Vue.component(componentscofig.name,componentscofig)
})
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。