import { createStore } from 'vuex'
const state = {
num: 0
}
type stateType = typeof state
const getters = {
getA(state: stateType, getters: gettersType) {
}
}
type gettersType = typeof getters
export default createStore({
state,
mutations: {},
actions: {},
modules: {},
getters
})