mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-11-09 21:58:28 +00:00
15 lines
246 B
JavaScript
15 lines
246 B
JavaScript
import "es6-promise/auto";
|
|
import { createStore } from "vuex";
|
|
|
|
const debug = process.env.NODE_ENV !== "production";
|
|
|
|
const store = createStore({
|
|
strict: debug,
|
|
state: {},
|
|
getters: {},
|
|
mutations: {},
|
|
actions: {},
|
|
});
|
|
|
|
export { store };
|