Navigation

    Quasar Framework

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. MusicForMellons
    3. Topics
    M
    • Profile
    • Following 0
    • Followers 0
    • Topics 31
    • Posts 120
    • Best 9
    • Groups 0

    Topics created by MusicForMellons

    • M

      scrollbar appears
      Help • • MusicForMellons

      1
      0
      Votes
      1
      Posts
      45
      Views

      No one has replied

    • M

      [solved] When is Dom ready for scroll?
      Help • • MusicForMellons

      2
      0
      Votes
      2
      Posts
      454
      Views

      M

      After using @load for the scroll-element and adding a nextTick it seems to work as should. See this stackoverflow-issue .

    • M

      Why does child property not work?
      Help • • MusicForMellons

      5
      0
      Votes
      5
      Posts
      377
      Views

      M

      @metalsadman Great! Thanks!

    • M

      Button icons size can not be altered
      Help • • MusicForMellons

      2
      0
      Votes
      2
      Posts
      1264
      Views

      M

      See this for a solution and whether that’s how it should be done…:
      https://github.com/quasarframework/quasar/issues/2033

    • M

      [15.1] Lazy loading of components
      Help • • MusicForMellons

      12
      0
      Votes
      12
      Posts
      1732
      Views

      M

      @rstoenescu said in [15.1] Lazy loading of components:
      The docs indeed explain code splitting and lazy-loading but don’t mention how the components in quasar.conf.js fit into this picture.

    • M

      Quasar Forum Menu is behaving strange
      Framework • • MusicForMellons

      5
      0
      Votes
      5
      Posts
      1036
      Views

      M

      we updated the board… maybe something helped that 😉
      cheers

    • M

      How to use error-labels of q-field?
      Help • • MusicForMellons

      6
      0
      Votes
      6
      Posts
      2085
      Views

      T

      I use Vee Validate, it work fine

      <q-field :error="errors.has('name')" :error-label="errors.first('name')" > <q-input v-validate="rules.name" v-model="form.name" name="name" float-label="Name" /> </q-field> -------- // Data form: { name: '', }, rules: { name: { required: true, }, // Methods submitForm() { this.$validator.validate().then(result => { if (result) { // success }else{ // error }
    • M

      left drawer panel in single file component
      Help • • MusicForMellons

      1
      0
      Votes
      1
      Posts
      731
      Views

      No one has replied

    • M

      support Material Design Icons!?
      Framework • • MusicForMellons

      3
      1
      Votes
      3
      Posts
      844
      Views

      M

      that set is nice!

    • M

      Radio ripple is slightly covered by div on top
      Help • • MusicForMellons

      1
      0
      Votes
      1
      Posts
      454
      Views

      No one has replied

    • M

      How to make a url-link from a button in Quasar version ^0.14
      Help • • MusicForMellons

      2
      0
      Votes
      2
      Posts
      3057
      Views

      M

      Ah, found an example in the quasar template:
      <q-btn
      color=“primary”
      push
      @click="$router.replace(’/’)"
      icon-right=“home”
      >
      Go home
      </q-btn>

    • M

      left-drawer pushes the existing screen to the right instead of moving on top
      Help • • MusicForMellons

      3
      0
      Votes
      3
      Posts
      929
      Views

      M

      Ah… it is in the documentation (gloops):
      http://quasar-framework.org/components/layout.html#Vue-Properties

      Used this and everything is working brilliantly:
      <q-layout ref=“layout” :left-breakpoint=0>

    • M

      Quasar extras different from existing material icons npm package?
      Help • • MusicForMellons

      1
      0
      Votes
      1
      Posts
      578
      Views

      No one has replied

    • M

      Uncaught SyntaxError: Unexpected identifier
      Help • • MusicForMellons

      2
      0
      Votes
      2
      Posts
      1547
      Views

      rstoenescu

      Seems like trouble for mapbox-gl. Can you set some breakpoints and see where exactly it fails?

    • M

      prevent pull-to-refresh behavior in mobile Chrome
      Help • • MusicForMellons

      9
      0
      Votes
      9
      Posts
      3589
      Views

      A

      The following will prevents the refresh

      html,
      body {
      overscroll-behavior-y: contain;
      }

    • M

      How to set AppFullscreen at pageload?
      Help • • MusicForMellons

      9
      0
      Votes
      9
      Posts
      2695
      Views

      krsyoung

      Ok, thanks for the feedback @MusicForMellons! It is definitely pretty spotty based on the browser implementation.

    • M

      How to include custom font
      Help • • MusicForMellons

      4
      0
      Votes
      4
      Posts
      2078
      Views

      S

      I know this was ages ago, but this will help others too (and lets face it, the docs search engine needs some help too):
      http://forum.quasar-framework.org/topic/14/add-custom-fonts-to-your-app

    • M

      change color of material icons
      Help • • MusicForMellons

      6
      0
      Votes
      6
      Posts
      3016
      Views

      M

      Yeah, setting these and adding to class works. Via css setting color to .item > i.item-primary also works. My problem was more of a ‘not working hot-reload thingy’ it seems. Thanks.

    • M

      build warnings and errors; and bundle size
      Help • • MusicForMellons

      18
      0
      Votes
      18
      Posts
      6562
      Views

      M

      Ok! In Pycharm this gives better code support… and it doesn’t harm I suppose.
    • M

      buttons are not properly rendered when going back into history
      Help • • MusicForMellons

      6
      0
      Votes
      6
      Posts
      1566
      Views

      M

      Works! Thanks!