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

12 lines
320 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
}
}
export default getters