12 lines
139 B
TypeScript
12 lines
139 B
TypeScript
import { createStore } from 'vuex'
|
|
|
|
export default createStore({
|
|
state: {
|
|
},
|
|
mutations: {
|
|
},
|
|
actions: {
|
|
},
|
|
modules: {
|
|
}
|
|
})
|