javascript - Dynamic import of routes into Vue router - Stack Overflow
I am creating a Vue starter kit app for a platform, and it will use a standard directory structure for creating all of the items needed for a resource (.vue
files, routes, Vuex store modules, etc). I would like to take advantage of this known structure to dynamically load router path objects so the user doesn't have to manually add routes to the router index file.
For example, here's a sample directory structure:
/src
|
---resources
|
-------user
|
---User.vue
---routes.js
---store.js
event
|
---Event.vue
---routes.js
---store.js
job
|
---Job.vue
---routes.js
---store.js
The inside of a routes.js
file looks like this:
import Event from '@/resources/event/Event'
export default [
{
path: '/events',
name: 'event',
ponent: Event
},
];
To do this manually in a standard router file (router.js
or router/index/js
), you would do something like this:
import Vue from 'vue'
import Router from 'vue-router'
import Home from '@/ponents/Home'
import Auth from '@/ponents/Auth';
import eventRoutes from '@/resources/event/routes.js';
import userRoutes from '@/resources/user/routes.js';
import jobRoutes from '@/resources/job/routes.js';
Vue.use(Router);
let baseRoutes = [
{
path: '/',
name: 'home',
ponent: Home
},
{
path: '/login',
name: 'auth',
ponent: Auth
},
];
const routes = baseRoutes.concat(shiftCalendarRoutes)
.concat(eventRoutes)
.concat(userRoutes)
.concat(jobRoutes);
export default new Router({
mode: 'history',
routes,
})
What I would really like to do is this:
import Vue from 'vue'
import Router from 'vue-router'
import Home from '@/ponents/Home'
import Auth from '@/ponents/Auth';
Vue.use(Router);
let routes = [
{
path: '/',
name: 'home',
ponent: Home
},
{
path: '/login',
name: 'auth',
ponent: Auth
},
];
function loadRoutes() {
const routes = require.context('@/resources', true, /routes.js$/i);
routes.keys().forEach((key) => {
const path = '@/resources/' + key.substring(2);
// Dynamically import file using import statement
import something from path;
// Add imported default object to routes object.
});
return routesList;
}
export default new Router({
mode: 'history',
routes,
})
The problem I'm running into is the actual import. When I try something like
routeItems.keys().forEach((key) => {
// routesList.push('@/resources/' + key.substring(2));
const path = '@/resources/' + key.substring(2);
const routeModule = import(path).default();
});
I get a Critical dependency: the request of a dependency is an expression
webpack error. I've tried other versions of import
without any luck.
Is it possible to do what I'm trying to do with dynamic importing?
I am creating a Vue starter kit app for a platform, and it will use a standard directory structure for creating all of the items needed for a resource (.vue
files, routes, Vuex store modules, etc). I would like to take advantage of this known structure to dynamically load router path objects so the user doesn't have to manually add routes to the router index file.
For example, here's a sample directory structure:
/src
|
---resources
|
-------user
|
---User.vue
---routes.js
---store.js
event
|
---Event.vue
---routes.js
---store.js
job
|
---Job.vue
---routes.js
---store.js
The inside of a routes.js
file looks like this:
import Event from '@/resources/event/Event'
export default [
{
path: '/events',
name: 'event',
ponent: Event
},
];
To do this manually in a standard router file (router.js
or router/index/js
), you would do something like this:
import Vue from 'vue'
import Router from 'vue-router'
import Home from '@/ponents/Home'
import Auth from '@/ponents/Auth';
import eventRoutes from '@/resources/event/routes.js';
import userRoutes from '@/resources/user/routes.js';
import jobRoutes from '@/resources/job/routes.js';
Vue.use(Router);
let baseRoutes = [
{
path: '/',
name: 'home',
ponent: Home
},
{
path: '/login',
name: 'auth',
ponent: Auth
},
];
const routes = baseRoutes.concat(shiftCalendarRoutes)
.concat(eventRoutes)
.concat(userRoutes)
.concat(jobRoutes);
export default new Router({
mode: 'history',
routes,
})
What I would really like to do is this:
import Vue from 'vue'
import Router from 'vue-router'
import Home from '@/ponents/Home'
import Auth from '@/ponents/Auth';
Vue.use(Router);
let routes = [
{
path: '/',
name: 'home',
ponent: Home
},
{
path: '/login',
name: 'auth',
ponent: Auth
},
];
function loadRoutes() {
const routes = require.context('@/resources', true, /routes.js$/i);
routes.keys().forEach((key) => {
const path = '@/resources/' + key.substring(2);
// Dynamically import file using import statement
import something from path;
// Add imported default object to routes object.
});
return routesList;
}
export default new Router({
mode: 'history',
routes,
})
The problem I'm running into is the actual import. When I try something like
routeItems.keys().forEach((key) => {
// routesList.push('@/resources/' + key.substring(2));
const path = '@/resources/' + key.substring(2);
const routeModule = import(path).default();
});
I get a Critical dependency: the request of a dependency is an expression
webpack error. I've tried other versions of import
without any luck.
Is it possible to do what I'm trying to do with dynamic importing?
Share Improve this question asked Apr 16, 2020 at 20:03 wonder95wonder95 4,3158 gold badges50 silver badges82 bronze badges1 Answer
Reset to default 4It doesn't really make sense to use import()
together with require.context()
, since the latter already provides the import. Given your use case, you only need require.context()
.
require.context()
returns a context module, which exports a keys
function that returns an array of all possible requests (i.e., the matching paths), each of which could be passed to the context itself (which invokes its resolve
function) to import the corresponding module:
function loadRoutes() {
const context = require.context('@/resources', true, /routes.js$/i)
return context.keys()
.map(context) // import module
.map(m => m.default) // get `default` export from each resolved module
}
- Win10、安卓手机实现打通:拖拽即可互传文件
- .NET开源:微软"云为先"战略的全面铺开
- 谷歌加入硬件战场:正面对抗亚马逊和苹果
- reactjs - LLM Endpoint hosted in Azure databricks Response 200 but body is locked - Stack Overflow
- c++ - juce::Image::RGB seems to produce 4 channel image - Stack Overflow
- android - Room Database is very slow For query 20 results with limit in 25k records - Stack Overflow
- java - mac update sequoia 15.1 or 15.2 not work UniversalJavaApplicationStub - Stack Overflow
- java - Custome Recipe Parsing Error when developing mod with fabric in Minecraft 1.21.4 - Stack Overflow
- for loop - CSS masonry grid with dynamic rows width - Stack Overflow
- exception - codeceptjs 3 run-workers with 11 worker threads encounter session out or time out problem - Stack Overflow
- vb.net - Display image in picturebox at runtime - Stack Overflow
- tomcat9 - guacd WebSocket Tunnel Timeout with "Support for protocol 'vnc' is not installed" Er
- python - Tkinter: custom frame widget overrides columnconfigure - Stack Overflow
- React Native Build Error on Windows: "EMFILE: too many open files" During `assembleRelease` - Stack Overflow
- python - ReCaptcha v3 works locally but not in deployment - Stack Overflow
- php - 406 error when sendingreceiving JSON data - Stack Overflow
- azure - Unable to get a token to create B2C user using Graph API - Stack Overflow