lg_frontend/store/dialog.js

20 lines
316 B
JavaScript
Raw Permalink Normal View History

2024-03-08 15:41:54 +00:00
export const state = {
/**
* 屏幕类型
* big 大屏 middle 中评
*/
screenType: 'big'
}
export const mutations = {
setScreenType (state, screenType) {
state.screenType = screenType
}
}
export const actions = {
setScreenType (state, screenType) {
state.screenType = screenType
}
}