付延余
2022-04-08 b76e7f30d9cf4258db4c2e4c77183edb10db0019
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