付延余
2022-05-20 73a9ae225888adae528d9b06233f65da04d883db
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