摘要: 1、新建一个globalVariable.js文件 2、定义要全局的变量 const UserId = ""; export default { UserId: "", setUserId(uId) { this.UserId = uId; } }; 3、使用该全局变量 在要使用该全局变量的vue文 阅读全文
posted @ 2019-07-20 23:56 在学习编程的lsy呀 阅读(2274) 评论(1) 推荐(0) 编辑