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. eleina
    3. Best
    • Profile
    • Following 0
    • Followers 11
    • Topics 1
    • Posts 31
    • Best 13
    • Groups 0

    Best posts made by eleina

    • RE: Please add HTTPS for the forum

      What ever happened to this? :^)

      posted in Hangout
      eleina
      eleina
    • RE: Handle browser hard refresh

      Had the same issue a long time ago, I think I have used an extra plugin called Vuex Persisted State.
      You can find it here https://www.npmjs.com/package/vuex-persistedstate

      posted in Help
      eleina
      eleina
    • RE: TypeScript error when using this.$router in actions.ts

      Hi! We have solved this in our project with using a shims.d.ts file. It looks like this:

      import {VueRouter} from 'vue-router/types/router'
      
      declare module 'vue/types/vue/' {
          interface Vue {
              $router: VueRouter
          }
      }
      

      Maybe this will help you.

      posted in Framework
      eleina
      eleina
    • RE: how to reorder a columns in Flex CSS?

      Hey! Maybe this will help you: http://quasar-framework.org/components/flex-css.html#Order
      You can set the order by adding a class like .order-first or add style='order: 2'

      posted in Help
      eleina
      eleina
    • RE: Nodejs.exe using 100% CPU on Windows 8.1 after running '> quasar dev' or '> quasar info'

      Hi there,

      The project you cloned runs on an older version of Quasar, maybe the problem lies there? Try to create a new project with the latest version and see if the command line still hangs forever:
      http://quasar-framework.org/guide/index.html

      Good luck!

      posted in CLI
      eleina
      eleina
    • RE: Data Table breaks when chinese characters in column label

      @lattamore I had something similar which caused the data table to look exactly like the one in your screenshot. I fixed it by setting the rowHeight to something bigger, maybe this also works for you!

      posted in Framework
      eleina
      eleina
    • RE: Passing object from List item to another page

      Maybe you can try it with dynamic route matching: https://router.vuejs.org/en/essentials/dynamic-matching.html
      With this you can pass the object to the router and retrieve it on the other page.

      posted in Help
      eleina
      eleina
    • RE: v0.15 news

      Glorious!

      posted in Announcements
      eleina
      eleina
    • RE: Using custom icons in Quasar components

      @mesqueeb One year later haha, but the proposal seems nice!

      posted in Framework
      eleina
      eleina
    • RE: Treegrid component

      Hey! Did you take a look at this: http://beta.quasar-framework.org/components/tree.html ? I believe this Tree component might be what you’re looking for 🙂

      posted in Help
      eleina
      eleina
    • RE: Quasar To Do Lists Manager

      Looks nice! Very simple, which I really like because I don’t need 30 minutes to figure out what the app is for.

      posted in Show & Tell
      eleina
      eleina
    • RE: Quasar v0.15 is out!

      This is awesome! Thank you so much for your efforts!

      posted in Announcements
      eleina
      eleina
    • RE: [Solved] auth check with firebase

      In your routes.js you can use the beforeEach() function which will be called every time the user switches routes. It could look something like this:

      routes.beforeEach((to, from, next) => {
         if (to.matched.some(record => record.meta.requiresAuth) && isAuthenticated()) {
           next('/login')
         } else {
           next()
         }
       })
      
       function isAuthenticated() {
         // returns true or false
       }
      

      The meta.requiresAuth is something you can add to a route that needs authentication. Hopefully this helps!

      posted in Help
      eleina
      eleina