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. MathSilva
    M
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 3
    • Best 0
    • Groups 0

    MathSilva

    @MathSilva

    0
    Reputation
    62
    Profile views
    3
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    MathSilva Follow

    Latest posts made by MathSilva

    • ERROR WHEN TRYING TO GENERATE SIGN APK IN ANDROID STUDIO

      Hi, i am trying to generate a sign apk with android studio. But i am getting an error in the manifest file, (i didn’t even touch this file, it was generated with cordova commands follwing the quasar tutorial).
      alt text

      posted in Framework
      M
      MathSilva
    • RE: WHERE IS MAIN.JS IN QUASAR?

      @shone i have read that, acctually all the documentation, but how can i call an action when the whole application starts? I was doing that with main of vue it was working fine. But i need to do it in quasar. I mean i don’t want to call this action when a single component loads, cuz i could call it directly in the component, but in the whole application.

      posted in Help
      M
      MathSilva
    • WHERE IS MAIN.JS IN QUASAR?

      I am calling an action with VUEX and i check if user is authenticated in the life cycle CREATED through main.js with vue without quasar

      created() {
       this.$store.dispatch('loadUserData'),
        firebase.auth().onAuthStateChanged(function(user) {
        if (user) {
          // add user into the store 
        }
      });
      
      }
      

      What can i do to call some action in quasar when all my application start, since these current versions there is not the main.js
      #quasar #doubt

      posted in Help
      M
      MathSilva