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

    Posts made by 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: Quasar v1.0 beta has arrived

      Awesome! And the docs are really clear and refreshing as well.

      posted in Announcements
      eleina
      eleina
    • RE: Quasar v1.0 beta1 in a few days

      Amazing! 🎉

      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
    • RE: Using custom icons in Quasar components

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

      posted in Framework
      eleina
      eleina
    • RE: Quasar v1.0 - Feature freeze in effect for v0.17

      Awesome!

      posted in Announcements
      eleina
      eleina
    • RE: Made with quasar - superfreedraw.com

      Love it! I also left a drawing hehe 😉

      posted in Show & Tell
      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: Please add HTTPS for the forum

      What ever happened to this? :^)

      posted in Hangout
      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: Quasar v0.15 is out!

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

      posted in Announcements
      eleina
      eleina
    • RE: Quasar Calendar components

      Looks really neat!

      posted in Show & Tell
      eleina
      eleina
    • RE: v0.15 news

      Glorious!

      posted in Announcements
      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: q-collapsible with q-side-link MS Edge issue?

      Hey there, I also have a <q-collapsibe> which contains <q-side-link>'s, but I have never had this issue. Have you already uncommented the imports in the main.js file for IE11 and Edge support?

      posted in Help
      eleina
      eleina
    • RE: V0.14.4 version components are too cumbersome

      You can also import these in your main.js file, then you don’t have to import them separately into your other files.

      posted in Framework
      eleina
      eleina
    • RE: import js file into hello.vue

      These are the ESLint errors. It says right there what it wants from you in the files. Such as:

      no-multiple-empty-lines -> this means you have more than one empty line in your code.
      no-multiple-spaces -> this means you have somewhere more than one space in your code.

      posted in Help
      eleina
      eleina
    • RE: quasar dev blank page can't run

      Hello @donvie,

      How can we help if you aren’t telling us anything?

      posted in Help
      eleina
      eleina
    • RE: Can I use modals with input parameters?

      @JDrechsler
      Did you declare the clickedBill in the data () method of Vue? Like this:

      export default { 
          data () {
              return: {
                  clickedBill: ''
              }
          }
      }
      

      What you’re trying to do should be possible, because I have the same kind of code in my application.
      Hope it helps!

      Eleina

      posted in Help
      eleina
      eleina
    • RE: Can I use modals with input parameters?

      Hello Johannes,

      Try this: $refs.modalEditBill.open(clickedBill = bill)
      Hope this is what you needed!

      Eleina

      posted in Help
      eleina
      eleina