mlpcardgame/src/store.ts

11 lines
145 B
TypeScript
Raw Normal View History

2019-09-02 07:29:49 +00:00
import Vue from "vue";
import Vuex from "vuex";
Vue.use(Vuex);
export default new Vuex.Store({
state: {},
mutations: {},
actions: {}
});