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
    1. Home
    2. D3myon
    3. Topics
    D
    • Profile
    • Following 0
    • Followers 0
    • Topics 6
    • Posts 14
    • Best 2
    • Groups 0

    Topics created by D3myon

    • D

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

      2
      0
      Votes
      2
      Posts
      1094
      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'
    • D

      Alerts appear mutliple times
      Help • alert events • • D3myon

      4
      0
      Votes
      4
      Posts
      991
      Views

      D

      I see, the problem was, that I put the Event-Listener into the mounted() function. I put it into created() and unsubscribed the event in beforeDestroy().

      Everything works fine now.

      Example created () { Events.$on('logout', response => { this.showLogoutAlert() }) }, beforeDestroy () { Events.$off('logout') }

      This does the trick for me.

    • D

      Quasar Electron App - Icon of .exe-file won't change
      Help • • D3myon

      3
      0
      Votes
      3
      Posts
      1028
      Views

      metalsadman

      I think the icons that will be used is the one in your ‘src/statics/icons’ folder, at least that’s what worked for me in my previous project.

    • D

      Tabs only in pages with sub routes
      Help • navigation sub routes tabs • • D3myon

      4
      0
      Votes
      4
      Posts
      1095
      Views

      D

      @benoitranque So, I took a look now. This is exactly what I was looking for. Thank you so much.

    • D

      Call route inside a function
      Help • • D3myon

      2
      0
      Votes
      2
      Posts
      847
      Views

      D

      Right after posting the question, I found the answer.

      this.$router.push('/xxxxx')

      did the trick.

      Thank you for reading.

    • D

      Login to Symfony application
      Help • • D3myon

      3
      0
      Votes
      3
      Posts
      870
      Views

      D

      Ok, thank you for the quick reply.