Files
ostandari/plugins/jquery.js
T
2024-10-21 10:22:26 +03:30

9 lines
167 B
JavaScript

import Vue from 'vue';
if (process.client) {
const jQuery = require('jquery');
global.$ = jQuery;
global.jQuery = jQuery;
Vue.prototype.$ = jQuery;
}