Navigation

    Quasar Framework

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. Tags
    3. cordova-plugin
    Log in to post
    • T

      Cordova Plugin not working in Vuex files
      Help • cordova-plugin import vuex • • tc

      11
      0
      Votes
      11
      Posts
      31
      Views

      T

      @dobbel Yes, I even added it to the window scope.
      Problem more likely the priority of loading the plugin.
      When the quasar start, it tend to loaded the vuex store before cordova plugin did, hence it will get undefined in state.js .

    • K

      Cordova Google Maps Plugin
      Help • cordova cordova-plugin google api google maps quasar-cli • • kw_7

      1
      0
      Votes
      1
      Posts
      77
      Views

      No one has replied

    • C

      Cordova social sharing plugin
      Framework • cordova-plugin • • chiacy

      3
      0
      Votes
      3
      Posts
      144
      Views

      W

      @chiacy please can you show me how you made it work for you

    • D

      Use a Cordova plugin inside the Quasar app (file caching)
      Help • cordova cordova-plugin file caching quasar • • D3myon

      2
      0
      Votes
      2
      Posts
      923
      Views

      benoitranque

      You use this as you would in any other Vue app. Quasar changes none of that. Since you probably want a single cache instance in your app, you probably should put it in a dedicated file.

      // cache.js const cache = new CordovaFileCache(OptionsObject) export default cache // usage in components import cache from './path/to/cache'
    • P

      Cordova cordova-plugin-qrscanner plugin preview not showing
      Help • cordova cordova-plugin qr-reading • • paragonHex

      2
      0
      Votes
      2
      Posts
      3457
      Views

      P

      So in the end I solved it with the phonegap-plugin-barcodescanner, which is very similar to the cordova-plugin-barcodescanner, but you can configure it, so it feels more like a QR scanner.

      Be aware that it the two above internally (in cordova) register/use the same name, so before changing from the cordova plugin to the phonegap one, remove it with the command below before adding the another one, so the build process won’t break.
      $ cordova plugin rm cordova-plugin-barcodescanner