2021-09-27 批量引入组件
2021-10-26 本文已影响0人
罗不错
const path = require('path')
const file = require.context('./', true, /.vue/)
const components = {}
file.keys().forEach(key => {
const name = path.basename(key, '.vue')
components[name] = file(key).default || file(key)
})
export default components