f3core-common
v1.0.31
Published
f3core common by next - user form
Readme
f3core-common
- nuxt.config.js
import config from 'f3core-common/config'
function commonRoutes(routes){
config.routes.forEach(function (item) {
routes.push({
name: item.name,
path: item.path,
component: 'node_modules/f3core-common/'+item.component
})
})
}
export default {
router: {
base: '/demo',
extendRoutes(routes, resolve) {
commonRoutes(routes)
}
}
}