1. 在components下定義pub.js
//方法1 exports.install = function (Vue, options) { Vue.prototype.baseUrl = 'http://tjegd.cn/'; Vue.prototype.getMyname = function(){ console.log("南昌雅騰") } }; //方法2 export default{ install(Vue,options){ Vue.prototype.baseUrl = 'http://tjegd.cn/'; Vue.prototype.getMyname = function(){ console.log("南昌雅騰") } } }
2. 在main.js/main.ts文件中引用
import pub from './components/pub'; Vue.use(pub);
3. 在.vue文件中調(diào)用
console.log(this.baseUrl);
this.getMyname();