@byu-oit/aim-nuxt-builder
Advanced tools
Comparing version 0.0.2-19 to 0.0.2-20
{ | ||
"name": "@byu-oit/aim-nuxt-builder", | ||
"version": "0.0.2-19", | ||
"version": "0.0.2-20", | ||
"description": "Builds out the AIM pages, static files, and vuex stores", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -6,3 +6,3 @@ import { ContextStore } from './store' | ||
export default function (ctx) { | ||
ctx.store.registerModule('context', new ContextStore(options), { preserveState: true }) | ||
ctx.store.registerModule('context', new ContextStore(options), { preserveState: true, namespaced: true }) | ||
} |
@@ -6,3 +6,3 @@ import { RootStore } from './store' | ||
export default function (ctx) { | ||
ctx.store.registerModule('root', new RootStore(options), { preserveState: true }) | ||
ctx.store.registerModule('root', new RootStore(options), { preserveState: true, namespaced: true }) | ||
} |
@@ -6,3 +6,3 @@ import { RouteStore } from './store' | ||
export default function (ctx) { | ||
ctx.store.registerModule('route', new RouteStore(options), { preserveState: true }) | ||
ctx.store.registerModule('route', new RouteStore(options), { preserveState: true, namespaced: true }) | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
43009