定义全局变量

1、新建 global.vue文件

<template>

</template>

<script>
//定义变量
 const baseUrl3 = config.baseUrl; export default { name: "global",
  //导出 baseUrl3 }
</script> <style scoped> </style>

2、main.js导入

import global_ from "./components/global";

Vue.prototype.GLOBAL = global_;

3、页面中使用

btn() {
      this.GLOBAL.baseUrl3 = this.aaa;
    },

 

posted @ 2020-09-28 20:58  云深深呀  阅读(370)  评论(0)    收藏  举报