vue-插件 引用ali.JS,

Posted MR崔

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue-插件 引用ali.JS,相关的知识,希望对你有一定的参考价值。

 

 

 

 

 

const wx = require(\'./1.3.2.js\').wx

const plugin = {
  install (Vue) {
    Vue.prototype.$wechat = wx
    Vue.wechat = wx
  },
  $wechat: wx
}

export default plugin
export const install = plugin.install

 

 

 

 

 

/**
 * Created by cuiyang on 2018/7/3.
 */

const alipay = require(\'./alipayjsapi.min\')

const plugin = {
    intall(){
        Vue.prototype.$alipay = alipay
        Vue.alipay = alipay
    },
    alipay: alipay
}

export default plugin
export const install = plugin.install

 

以上是关于vue-插件 引用ali.JS,的主要内容,如果未能解决你的问题,请参考以下文章

#VSCode保存插件配置并使用 gist 管理代码片段

vue学习vue中怎么引用laydate.js日期插件

vue10行代码实现上拉翻页加载更多数据,纯手写js实现下拉刷新上拉翻页不引用任何第三方插件

在vue里引用swiper插件,怎么使用

如何在 vue 项目里正确地引用 jquery 和 jquery-ui的插件

在vue里引用swiper插件,怎么使用