fantasia-archive/src/store/module-options/getters.ts
2021-03-17 22:26:08 +01:00

12 lines
266 B
TypeScript

import { GetterTree } from "vuex"
import { StateInterface } from "../index"
import { OptionsStateInteface } from "./state"
const getters: GetterTree<OptionsStateInteface, StateInterface> = {
getOptions (context) {
return context
}
}
export default getters