日韩精品欧美激情国产一区_中文无码精品一区二区三区在线_岛国毛片AV在线无码不卡_亞洲歐美日韓精品在線_使劲操好爽好粗视频在线播放_日韩一区欧美二区_八戒八戒网影院在线观看神马_亚洲怡红院在线色网_av无码不卡亚洲电影_国产麻豆媒体MDX

通過(guò)vue.use來(lái)加載自定義的vue插件

時(shí)間:2019-09-08 11:23:16 類(lèi)型:vue
字號(hào):    

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();