zhangxiaoxu123456
2022-04-29 7e694768f428b83ed462eb384c43b2ebff61f75c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 *    公共组件
 */
 
const common = {
    state: {
        title: '视频管理'
    },
    mutations: {
        SET_TITLE: (state, action) => {
            state.title = !state.isCollapse
        },
    }
}
export default common