公告板
版本库
filestore
活动
搜索
登录
孔德强
/
tangshanDaPing
唐山运维大屏
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
第一次提交
kongdeqiang
2023-07-02
fa99d6f0de7d6e7d601542eefa5b040f38c69f98
[~kongdeqiang/tangshanDaPing.git]
/
src
/
store
/
modules
/
common.js
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