vue全局引入某工具类js的方法

import Vue from 'vue';
import jquery from 'jquery';

Object.defineProperty(Vue.prototype, '$', { value: jquery });

使用

export default Vue.extend(
{
    mounted()
    {
      console.log(this.$, this.$('wind'))
    }
})

你可能感兴趣的:(vue全局引入某工具类js的方法)