付延余
2022-05-07 7c2ff43a4f70638fb063d0aa1d2f1624e6cada33
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