nervtn-web/src/nervtn-state.js

14 lines
218 B
JavaScript
Raw Permalink Normal View History

2021-11-29 01:06:34 +01:00
/* jshint -W097 */ // don't warn about "use strict"
"use strict";
import Vuex from 'vuex';
const store = new Vuex.Store({
state: {},
mutations: {},
actions: {},
modules: {}
});
export default store;