vue中全局公共方法的使用

1.在assets文件夹下,新建js文件夹,创建common.js

export default {    
    istest(){
        console.log("this is test")
    }
}

2.如果是全局(多页面)使用:在main.js中引入

/* 引入公共js*/
import common from '@/assets/js/common.js'
Vue.prototype.common=common;

3..在VUE文件中使用

this.common.istest();    //this is test

 

 

 

如果是单页面使用:

1.在vue的script中引入

import common from '@/assets/js/common'

2.在vue文件中使用

common.istest();    //this is test

 

上一篇:Castled 源码解析 - common 模块说明


下一篇:后端工程架构系列篇(一):单应用多模块(按业务拆分)