付延余
2022-04-13 a9177ddf70af5f22b81f6594398826c2e33e2c23
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