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. Lou Rectoret
    L
    • Profile
    • Following 0
    • Followers 0
    • Topics 7
    • Posts 36
    • Best 4
    • Groups 0

    Lou Rectoret

    @Lou Rectoret

    5
    Reputation
    86
    Profile views
    36
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Lou Rectoret Follow

    Best posts made by Lou Rectoret

    • RE: @quasar/app 1.0.0-rc.7 released!

      Hey nice job! I’m porting the project from v0.17 and everything runs. But I really wanted to thank you due to updated new break-point sizes! Screens are now bigger and bigger, so it made a lot of sense to get rid of 992px point. Thanx a lot!
      @rstoenescu & CO great job!

      posted in Announcements
      L
      Lou Rectoret
    • How to add new Breakpoint xxl?

      Hi! I’d like to add a new breakpoint!

      By default there are:

      $sizes = {
        xs: 0,
        sm: 575px
        md: 767px
        lg: 991px
        xl: 1199px
      }
      

      But I would find useful another one for bigger screens from 1400-1600px, like: xxl:1199px

      Is this possible?

      posted in Help
      L
      Lou Rectoret
    • how to use Vuex-Router-sync in Quasar project (v0.17)

      1- Add vuex-router-sync as a plugin in quasar.conf.js:
      0_1548328835413_1ef66bfb-94b3-44e1-8a1b-f592d33425f4-imagen.png

      2- In plugins folder create a file named : vuex-router-sync, and add:

      import { sync } from 'vuex-router-sync'
      
      export default ({ router, store, Vue }) => {                   
          sync(store, router)
      }
      
      

      3- Check in vue-devtools the Central State:
      0_1548329458620_7d2c4138-d58c-4fef-bcf0-eb4b198cf247-imagen.png

      posted in Useful Tips (NEW)
      L
      Lou Rectoret
    • RE: [Solved] Unhandled promise rejection TypeError: "_this.$q.dialog is not a function"

      Yeah I happened the same to me. They should specify at the very begining that there are 2 ways of using it: as plugin, and as a component.

      posted in Framework
      L
      Lou Rectoret

    Latest posts made by Lou Rectoret

    • RE: Moving our "forum" to Github Discussions

      @s-molinari What a pitty!

      It was very comfortable place to discuss, in here. I don’t like github for forum porpouses 😞

      posted in Announcements
      L
      Lou Rectoret
    • RE: [Vue warn]: Error in callback for watcher "function () { return this._data.$$state }": "Error: [vuex] Do not mutate vuex store state outside mutation handlers."

      What is really happening is that you’re referencing your store’s todos to components’s todos to.
      You should clone the array instead:

      I found myself in the same situation but with members, and this solved the issue:

       const clonedMembers: [...this.formData.members]
      // then you call the mutation with the clone
      

      Yes… is a pain in the ass.

      I think this is solved in Vue3.

      posted in Help
      L
      Lou Rectoret
    • RE: How do I use vuex module actions of axios ?

      My solutlion as late March 2021:

      import Vue from 'vue'
      
      import Axios from 'axios'
      
      const BASE_URL = process.env.API || 'http://localhost:3000/'
      
      const axios = Axios.create({
        baseURL: BASE_URL,
        timeout: 1000,
        headers: {
          'Content-Type': 'application/json'
        }
      })
      
      Vue.prototype.$axios = axios
      
      export {
        axios
      }
      
      posted in Help
      L
      Lou Rectoret
    • RE: [SOLVED] Deploy Quasar in Netlify / Broken links when refreshing

      I just found the solution!!!

      /*    /  200
      
      posted in Help
      L
      Lou Rectoret
    • RE: Button icons size can not be altered

      Shit… I’ve just realized, there’s an inconsistency:
      For average q-btn is size, but for q-btn with fab property is padding…

      @metalsadman I think this could mislead other as it happened to me. I recommend you to consider this improvement

      posted in Help
      L
      Lou Rectoret
    • RE: Button icons size can not be altered

      @MusicForMellons did u find the answer?

      posted in Help
      L
      Lou Rectoret
    • RE: [SOLVED] Deploy Quasar in Netlify / Broken links when refreshing

      Hey @beets I just tried but it’s not working:

      /info               http://www.masiesxviure.cat/info
      /info#objectius     http://www.masiesxviure.cat/info#objectius
      /info#com-funciona  /info#com-funciona
      
      

      I’m lost. I don’t know what is missing 😞

      posted in Help
      L
      Lou Rectoret
    • RE: [SOLVED] Deploy Quasar in Netlify / Broken links when refreshing

      @dobbel your answer is not solving my issue: Broken links.

      posted in Help
      L
      Lou Rectoret
    • [SOLVED] Deploy Quasar in Netlify / Broken links when refreshing

      Hi! I’ve been trying to deploy my app in Netlify.

      PROBLEM:
       I managed to run the app in SPA mode, but links are not working: error 404
      
      QUESTIONS about deployment in NETLIFY:
      - How can I make the links work in SPA???
      
      posted in Help
      L
      Lou Rectoret
    • RE: Environment variables

      @DarkLite1 did you managed?

      posted in CLI
      L
      Lou Rectoret