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

    jannerantala

    @jannerantala

    2
    Reputation
    50
    Profile views
    3
    Posts
    0
    Followers
    1
    Following
    Joined Last Online
    Website jannerantala.com Location Finland

    jannerantala Follow

    Best posts made by jannerantala

    • RE: Trying to install Google Analytics. Very confused!

      This might be late for you but I hope this helps someone. I have written two tutorials for both SPA website and for Cordova how to set up Google Tag Manager / Google Analytics:
      https://jannerantala.com/tutorials/quasar-framework-google-tag-manager-and-analytics-setup-for-an-spa-website/
      https://jannerantala.com/tutorials/quasar-framework-google-analytics-setup-for-cordova-app/

      posted in Help
      J
      jannerantala
    • RE: how can i set a default header with the jwt-token in all the request after login

      @thamibn I always set the Axios header after the login. Before the login all requests are made without the Bearer token:

      this.$http.post('/login', {
      username: this.email,
      password: this.password
      })
      .then(res=> {
      localStorage.token = res.token;
      this.$http.defaults.headers.common['Authorization'] = 'Bearer ' + localStorage.token;
      })
      
      posted in Help
      J
      jannerantala

    Latest posts made by jannerantala

    • RE: how can i set a default header with the jwt-token in all the request after login

      @thamibn I always set the Axios header after the login. Before the login all requests are made without the Bearer token:

      this.$http.post('/login', {
      username: this.email,
      password: this.password
      })
      .then(res=> {
      localStorage.token = res.token;
      this.$http.defaults.headers.common['Authorization'] = 'Bearer ' + localStorage.token;
      })
      
      posted in Help
      J
      jannerantala
    • RE: Trying to install Google Analytics. Very confused!

      This might be late for you but I hope this helps someone. I have written two tutorials for both SPA website and for Cordova how to set up Google Tag Manager / Google Analytics:
      https://jannerantala.com/tutorials/quasar-framework-google-tag-manager-and-analytics-setup-for-an-spa-website/
      https://jannerantala.com/tutorials/quasar-framework-google-analytics-setup-for-cordova-app/

      posted in Help
      J
      jannerantala