我目前正在使用require.context
加载我的.vue
个没有以Async
结尾的文件名的组件。
const loadComponents = (Vue) => {
const components = require.context('@/components', true, /\/[A-Z](?!\w*Async\.vue$)\w+\.vue$/);
components.keys().forEach((filePath) => {
const component = components(filePath);
const componentName = path.basename(filePath, '.vue');
// Dynamically register the component.
Vue.component(componentName, component);
});
};
现在我想加载以Async
require.context
结尾的my组件,这样每当我创建这种类型的新组件时,我都不必手动添加它们。
通常,动态导入语法如下所示:
Vue.component('search-dropdown', () => import('./search/SearchDropdownAsync'));
这将通过承诺解决并动态导入组件。
发生的问题是,当您使用require.context
时,它会立即加载(需要)组件,我无法使用动态导入。
有没有办法将require.context
与Webpack的动态导入语法结合起来?
https://webpack.js.org/guides/code-splitting/#dynamic-imports
答案 0 :(得分:0)
require.context
的第四个参数可以帮助解决这个问题。
https://webpack.js.org/api/module-methods/#requirecontext
https://github.com/webpack/webpack/blob/9560af5545/lib/ContextModule.js#L14
const components = require.context('@/components', true, /[A-Z]\w+\.(vue)$/, 'lazy');
components.keys().forEach(filePath => {
// load the component
vueComponents(filePath ).then(module => {
// module.default is the vue component
console.log(module.default);
});
});