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. morlz
    M
    • Profile
    • Following 0
    • Followers 0
    • Topics 5
    • Posts 22
    • Best 4
    • Groups 0

    morlz

    @morlz

    4
    Reputation
    279
    Profile views
    22
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    morlz Follow

    Best posts made by morlz

    • RE: How to use stylus on quasar dom?

      QCard component has class q-card
      use:

      <style lang=“stylus”>
      .q-card
        width 300px
      </style>
      

      or add own class

      <q-card class="myOwnClass">...</q-card>
      
      <style lang=“stylus”>
      .myOwnClass
        width 300px
      </style>
      
      posted in Help
      M
      morlz
    • RE: Quasar v1.0 - Feature freeze in effect for v0.17

      Thank you for your efforts! You make my life much easier!

      posted in Announcements
      M
      morlz
    • RE: Tips for long lists?

      I use vue-virtual-scroller to solve this problem.

      https://github.com/Akryum/vue-virtual-scroller

      posted in Framework
      M
      morlz
    • RE: Can't access state through mutation in VUEX?

      Your state is similar to

      const state = {
        state: {
          paidMonthlyExpenses: []
        }
      }
      

      You should set it like (two times “state”)

      state.state.paidMonthlyExpenses = [...state.state.paidMonthlyExpenses, key]
      
      posted in Help
      M
      morlz

    Latest posts made by morlz

    • RE: How Can I Confiqure the Vue-Loader
      extendWebpack (cfg) {
        const vueLoaderRule = cfg.module.rules
          .find(el => el.test.toString() == /\.vue$/.toString())
      
        const ruleFirstLoader = vueLoaderRule.use[0]
        const options = ruleFirstLoader.options
      
        // change options
        options.transpileOptions = {
          transforms: {
            dangerousTaggedTemplateString: true
          }
        }
      }
      
      posted in Help
      M
      morlz
    • RE: Tips for long lists?

      @s-molinari, QInfiniteScroll just loading more data, this is not a virtual list.
      Virtual list replace nodes that are out of viewport with white space like margin.
      This solves a performance problem if the page has a large list. (500 000 simple nodes or more 500 components in v-for which render more than 0.5 ms per item)

      posted in Framework
      M
      morlz
    • RE: Tips for long lists?

      I use vue-virtual-scroller to solve this problem.

      https://github.com/Akryum/vue-virtual-scroller

      posted in Framework
      M
      morlz
    • [V1] QScroll scrolling

      Please add scrolling while holding the middle mouse button on desktop

      posted in Framework
      M
      morlz
    • RE: 0.17.20 Scroll in chrome when driver is open

      Снимок экрана (378).png

      posted in Framework
      M
      morlz
    • 0.17.20 Scroll in chrome when driver is open

      In play app errors in console while i scrolling when left or right driver is open.
      I hope this version is still maintained.

      quasar 0.17.20
      chrome 73.0.3683.103

      https://quasar-framework.org/quasar-play/android/index.html#/showcase/layout-demo/play-with-layout
      https://www.chromestatus.com/features/6662647093133312

      posted in Framework
      M
      morlz
    • RE: Can't access state through mutation in VUEX?

      Your state is similar to

      const state = {
        state: {
          paidMonthlyExpenses: []
        }
      }
      

      You should set it like (two times “state”)

      state.state.paidMonthlyExpenses = [...state.state.paidMonthlyExpenses, key]
      
      posted in Help
      M
      morlz
    • RE: Dynamic v-model. Hmm.....

      @s-molinari In the getter, you can choose from where you need to get the value, and in the “input” handler, choose where you want to assign it.

      posted in Help
      M
      morlz
    • RE: How to use stylus on quasar dom?

      QCard component has class q-card
      use:

      <style lang=“stylus”>
      .q-card
        width 300px
      </style>
      

      or add own class

      <q-card class="myOwnClass">...</q-card>
      
      <style lang=“stylus”>
      .myOwnClass
        width 300px
      </style>
      
      posted in Help
      M
      morlz
    • RE: Dynamic v-model. Hmm.....

      You can bind value and handle the input event
      https://vuejs.org/v2/guide/components.html#Using-v-model-on-Components

      posted in Help
      M
      morlz