11 lines
158 B
JavaScript
11 lines
158 B
JavaScript
import { createStore } from "vuex";
|
|
import { auth } from "./auth.module";
|
|
|
|
const store = createStore({
|
|
modules: {
|
|
auth,
|
|
},
|
|
});
|
|
|
|
export default store;
|