美文网首页
Vue 全局方法封装,以log为例

Vue 全局方法封装,以log为例

作者: XBYoung | 来源:发表于2020-06-30 13:41 被阅读0次
    image.png

    新建js文件

    var fun = function (info) {
      console.log('hello -> '+info)
    }
    export default fun
    

    main.js导包并挂载

    import log from './common/common.js'
    Vue.prototype.$log = log
    

    使用

    this.$log('android created')
    

    相关文章

      网友评论

          本文标题:Vue 全局方法封装,以log为例

          本文链接:https://www.haomeiwen.com/subject/gzfxqktx.html