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. panstromek
    P
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 6
    • Best 0
    • Groups 0

    panstromek

    @panstromek

    0
    Reputation
    127
    Profile views
    6
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    panstromek Follow

    Latest posts made by panstromek

    • RE: QDataTable show all rows (disable pagination)

      @wpq That’s great, because this is way too far in the past for me, I don’t even know what I was talking about 😃 it’s also likely outdated, because I think it was before 1.0…? Not sure, though

      posted in Framework
      P
      panstromek
    • RE: Webstorm autocomplete stylus variables

      I was thinking about solving this somehow in ide-helper, yea. But I didn’t get to it in the end. I get autocomplete from project files even without import though, so the easiest thing you can do is to just copy the file with variables into some ignored folder in the project (that’s probably what I would do with the ide-helper anyway, just automatically).

      86c4640d-f4a2-42d9-82b4-21000ccef2a0-image.png

      posted in Framework
      P
      panstromek
    • RE: [Solved] How do I reset a vuex store in Quasar?

      if we want some HMR magic for it is related to hot reload - if you want the store to reload only a single module on changes during development instead of trigger rebuild.

      And yes, you can organize the store however you want - put everything in index.js, or on the same level… it’s up to you. Quasar scaffolds very granular setup at start, but you can definitely reorganize it for your needs. I tend to have just per-file modules, because they are usually pretty small in my projects. In the end store is just a bunch of JS objects and functions that you put inside the Store constructor. There is no restriction on how you organize them.

      You can reset the store with some mutation nulling all variables like Max said. I often use dynamic modules and just register one on login and unregister it on logout. That way I can just throw out all the data easily.

      posted in Help
      P
      panstromek
    • RE: Why is there no jsconfig.json in the project root?

      Did you try it? Does it just work or you need to install something else? (I use WebStorm and it does all this automatically)

      posted in Framework
      P
      panstromek
    • RE: QDataTable show all rows (disable pagination)

      This feature just came out 😉 check the announcement 😉

      posted in Framework
      P
      panstromek
    • RE: Quasar & Quasar CLI v0.17 aka SSR - Developer Preview

      @mesqueeb
      Question 1: Yes, they differ. Only Major version should stay the same…
      Question 2: I had a problem with that, too. You need to convert it to usage of Quasar plugins - store is injected in them. Once you create store, you can also name-export it, too… But I would try to avoid that, because you would need to do lot of null-checking.

      posted in Announcements
      P
      panstromek