Please note:
The Index/Search/Features are the exact same code, with different names, all three have a path, component, name and meta like the one supplied below.
notes/routes/routes.js
import Index from './index'
import Search from './search'
import Features from './features'
export default {
Index,
Search,
Features
}
notes/routes/index.js
import Index from '../components/index'
export default {
name: 'notes.index',
path: '/notes',
component: Index,
meta: {
title: `Manage notes - Sort`,
}
}
router.js
import Vue from 'vue'
import Router from 'vue-router'
import NoteRoutes from '@notes/routes/routes'
Vue.use(Router)
const routes = Array.prototype.concat(
NoteRoutes,
);
const router = new Router({
mode: 'history',
routes
});
I am concatenating all of my route.js files from each module, and then applying them to the Router, but I am still getting the error:
Uncaught Error: [vue-router] "path" is required in a route configuration.
Even though all my routes have a path. If I import a route file, let's say index.js
directly it works, but not when using my routes.js which is just an exporter for all my routes for that module. What am I missing here?