[Vuejs]-Could I import all the vue.js components from a folder?

0👍

You can do it with help of ‘import-glob’ npm package https://www.npmjs.com/package/import-glob . According to the docs:

ES6 import with glob patterns (preloader for Webpack)

Expands globbing patterns for ES6 import statements.

import modules from "./foo/**/*.js";

Expands into

import * as module0 from "./foo/1.js";
import * as module1 from "./foo/bar/2.js";
import * as module2 from "./foo/bar/3.js";

modules = [module0, module1, module2]

Leave a comment