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. jetsmart
    J
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 8
    • Best 1
    • Groups 0

    jetsmart

    @jetsmart

    1
    Reputation
    40
    Profile views
    8
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    jetsmart Follow

    Best posts made by jetsmart

    • RE: Quasar CLI. Problem with creating new project

      Thanks, Scott
      uninstall @quasar/app helped

      posted in CLI
      J
      jetsmart

    Latest posts made by jetsmart

    • RE: Quasar CLI. Problem with creating new project

      Thanks, Scott
      uninstall @quasar/app helped

      posted in CLI
      J
      jetsmart
    • Quasar CLI. Problem with creating new project

      2021-01-10 220551.png

      The problem appeared after updating Quasar CLI. Before that everything worked fine.

      Tried reinstalling. No result.

      un 223028.png

      inst 223142.png

      posted in CLI
      J
      jetsmart
    • RE: Breakpoints relatively Layout

      thanks @dobbel
      I also met similar solutions. It works, but this is “standalone” solutions.
      I have Quasar app with template based on quasar classes like col-<breakpoint> and similar. And I wish it would work both in the window and in the сontainerized layout the same way.
      It would be nice if Quasar developers implemented this feature

      posted in Help
      J
      jetsmart
    • Breakpoints relatively Layout

      Hi all
      We have a interesting example Containerized QLayout where we see that drawers breakpoint does not refer to the window width, but to the actual width of the QLayout container.
      It’s great! But, how can I use this wonderful container with relative breakpoints for the classes like col-<breakpoint>-<number> where <breakpoint> does not refer to the window width, but to the actual width of the QLayout container?

      posted in Help
      J
      jetsmart
    • RE: SSR + PWA with dynamic manifest.json

      Hi!
      I have a similar case.
      Is there any solution?

      Need to disable generation of native quasar manifest. But leave GenerateSW mode and generation of serviceworker.

      posted in Framework
      J
      jetsmart
    • RE: TreeShaking using webpack

      @Hawkeye64
      I dont use quasar-cli. For project building i use webpack (ver. 4.33) itself (npm run build).

      "scripts": {
          "build": "webpack --mode=production --devtool source-map --progress"
      }
      

      TreeShaking works perfectly with simple test modules, as described in manual https://webpack.js.org/guides/tree-shaking, but wont with Quasar.

      I try remove import {default as Quasar} from 'quasar' then bundle size decreases, and contain only QBtn.

      !(https://ibb.co/1mnVkXD)

      Exactly import {default as Quasar} pulls along all quasar components.

      !(https://ibb.co/3Y4XJJQ)

      posted in Help
      J
      jetsmart
    • TreeShaking using webpack

      Hi!
      I create App with Nuxt, and using nuxt build for building bundle.

      1. install Quasar into project: vue add quasar
      2. add code into app
      import Vue from 'vue'
      import '../../assets/stylus/quasar.styl'
      import '@quasar/extras/material-icons/material-icons.css'
      import {default as Quasar} from 'quasar'
      import {
        QBtn
      } from 'quasar'
      
      Vue.use(Quasar, {
        config: {},
        components: {
          QBtn,
        },
        directives: {
        },
        plugins: {
        }
      })
      
      1. create bundle npm run build
      2. analyze bundle and see, that all quasar components is included, however i use unly one QBtn.

      How can i minimize bundle size by treeshaking?

      posted in Help
      J
      jetsmart
    • RE: Unwanted tree node expansion

      try add to q-input element “@click.stop”

      posted in Framework
      J
      jetsmart