| 123456789101112131415161718192021222324 |
- /**
- * 模块名称:globalVariable 全局变量
- * 用途:此处可以定义全局变量
- *
- *
- * @author:liyz
- * @date 2019-06-05
- * @version:0.1.0
- */
- //用export default 暴露出去,供其他vue文件使用
- export default {
- // 定义一个全局变量
- treeWidth:0,
- firstNode:'',
-
- // 定义一个设置值的方法
- setTreeWidth(treeWidth){
- this.treeWidth = treeWidth;
- },
- setFirstNode(firstNode){
- this.firstNode = firstNode;
- },
- }
|