仪表盘
版本库
文件存储
活动
搜索
登录
main
/
fume-manage-vue
油烟在线监测
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
油烟监测系统 Vue代码
zmc
2023-08-14
172d73cbe737c04b3d2c3fe8908db2460c241543
[fume-manage-vue.git]
/
src
/
components
/
layout
/
example.ts
1
2
3
4
5
6
7
8
9
10
import { store } from './singleton';
export function updateVariable() {
store.variable = 'World';
}
export function getVariable() {
return store.variable;
}