全局注册js文件

1.创建公共js: src->utils->common.js

export default {
  fn(){
     console.log('this is test'); 
  }
}

2.在main.js引入js并注册

import common from ''../../common.js"
Vue.prototype.common=common

3.直接在单文件组件中的mounted钩子函数里调用公共方法

你可能感兴趣的:(全局注册js文件)