新建一个公共函数文件夹,在文件夹下新建一个js文件用于存放函数和变量 :cool:

common.js
// 全局变量
const gvar = {
    test: '全局变量'
}

// 全局函数
const test = () => {
    return console.log("全局函数");
};

// 暴露
export default {
    gvar,
    test,
};
main.js
import comfun from '@/scripts/common';   //引入文件
Vue.prototype.$comfun = comfun; // 挂载全局
调用
this.$comfun.test()
// 全局函数
console.log(this.$comfun.gvar.test)
// 全局变量
文章目录