是否可以将require.context用于Webpack的动态导入?

时间:2018-04-26 08:38:17

标签: javascript webpack vue.js vue-component dynamic-import

我目前正在使用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

1 个答案:

答案 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);
  });
});