Disable fastclick on 0.13 ?
-
Hi !
Is there any solution to disable fastclick globally on quasar 0.13 ?
I have some problems in my app with somes plugins like Google Autocomplete or Quill Editor on mobile.
I tried to remove fastclick package via npm but of course Quasar need it to compile
Thanks
-
This post is deleted! -
Ok I found the solution to disable fastclick globally.
Put these lines on your main.js
import FastClick from 'fastclick' FastClick.notNeeded = true
-
For the newer Quasar CLI:
I made a fastclick.js file in the “plugins” folder.
fastclick.js:import FastClick from 'fastclick' FastClick.notNeeded = true export default ({ app, router, Vue }) => {}
Remember to add “fastclick” under the plugins array property in quasar.conf.js