No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search

    Disable fastclick on 0.13 ?

    Help
    2
    4
    1195
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • D
      damosse31 last edited by

      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

      1 Reply Last reply Reply Quote 0
      • D
        damosse31 last edited by

        This post is deleted!
        1 Reply Last reply Reply Quote 0
        • D
          damosse31 last edited by

          Ok I found the solution to disable fastclick globally.

          Put these lines on your main.js

          import FastClick from 'fastclick'
          FastClick.notNeeded = true
          
          1 Reply Last reply Reply Quote 2
          • M
            mattabdi last edited by

            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

            1 Reply Last reply Reply Quote 0
            • First post
              Last post