Not sure if this is the best way, but it works. Create a Quasar plugin (jquery.js or whatever) and put:
import jQuery from 'jquery' window.$ = window.jQuery = jQuery; export default () => {}Add it to quasar.conf.js:
... plugins: [ 'axios', 'jquery' ], ...Then anything that references jQuery as $ or jQuery should work anywhere.