What ever happened to this? :^)

Best posts made by 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 -
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.
-
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 addstyle='order: 2'
-
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.htmlGood luck!
-
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! -
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. -
RE: Using custom icons in Quasar components
@mesqueeb One year later haha, but the proposal seems nice!
-
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
-
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.
-
RE: Quasar v0.15 is out!
This is awesome! Thank you so much for your efforts!
-
RE: [Solved] auth check with firebase
In your
routes.js
you can use thebeforeEach()
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!