mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 13:24:25 +00:00
address creation/edition is unchanged many variables are renamed to improve logic and readability
15 lines
256 B
JavaScript
15 lines
256 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 };
|