fantasia-archive/src/store/module-floatingWindows/getters.ts

15 lines
416 B
TypeScript
Raw Normal View History

import { GetterTree } from "vuex"
import { StateInterface } from "../index"
import { FloatingWindowsStateInteface } from "./state"
const getters: GetterTree<FloatingWindowsStateInteface, StateInterface> = {
getAdvSearchWindowVisible (context) {
return context.advSearchWindowVisible
2021-05-02 02:31:33 +12:00
},
getNoteCorkboardhWindowVisible (context) {
return context.noteCorkboardWindowVisible
}
}
export default getters