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. nachodd
    N
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 2
    • Best 2
    • Groups 0

    nachodd

    @nachodd

    2
    Reputation
    36
    Profile views
    2
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    nachodd Follow

    Best posts made by nachodd

    • RE: How to import Quasar components to use Vue code completion in IntelliJ IDEA/Webstorm?

      For newer versions of quasar, the quasar folder in node_modules is just ‘quasar/’

      #!/bin/bash
      
      for file in `find node_modules/quasar/src/components -name index.js`
      do
          dir="$(dirname $file)/"
          awk -v dir=${dir#node_modules/} '/^import Q/ {sub(/\.\//, dir); print; print "Vue.component(" $2 ".name, " $2 ")\n"}' $file
      done'
      
      posted in Help
      N
      nachodd
    • RE: Webpack alias in quasar.conf.js .15+

      @fpe @MusicForMellons
      I was facing a similar issue in the past.
      I managed to solve it by doing this (my answer on stackoverflow): https://stackoverflow.com/questions/34943631/path-aliases-for-imports-in-webstorm/50159420#50159420

      Hope it helps!

      posted in Help
      N
      nachodd

    Latest posts made by nachodd

    • RE: Webpack alias in quasar.conf.js .15+

      @fpe @MusicForMellons
      I was facing a similar issue in the past.
      I managed to solve it by doing this (my answer on stackoverflow): https://stackoverflow.com/questions/34943631/path-aliases-for-imports-in-webstorm/50159420#50159420

      Hope it helps!

      posted in Help
      N
      nachodd
    • RE: How to import Quasar components to use Vue code completion in IntelliJ IDEA/Webstorm?

      For newer versions of quasar, the quasar folder in node_modules is just ‘quasar/’

      #!/bin/bash
      
      for file in `find node_modules/quasar/src/components -name index.js`
      do
          dir="$(dirname $file)/"
          awk -v dir=${dir#node_modules/} '/^import Q/ {sub(/\.\//, dir); print; print "Vue.component(" $2 ".name, " $2 ")\n"}' $file
      done'
      
      posted in Help
      N
      nachodd