app.ts
307 Bytes
const id: string = 'app'
const state = () => ({
isCollapse: false,
})
const getters = {
getCollapseStatus () {
return this.isCollapse
}
}
const actions = {
toggleCollapse() {
this.isCollapse = !this.isCollapse
},
}
export default {
namespace: true,
actions,
getters,
state,
id
}