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; },