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

    gregorybleiker

    @gregorybleiker

    3
    Reputation
    260
    Profile views
    8
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    gregorybleiker Follow

    Best posts made by gregorybleiker

    • RE: Index property missing in config/index.js

      Excellent, it worked. I had some old conf.js files…

      Thank you!

      posted in Help
      G
      gregorybleiker
    • RE: Quasar v0.15 is out!

      @Akaryatrh Thanks for the tip, I removed the local quasar-cli and reinstalled, now all is good. As you say, quite a change 🙂

      posted in Announcements
      G
      gregorybleiker
    • Autocomplete and Chips Input

      I’m trying to get autocomplete to work with the chips input. However, the search method never seems to get hit… should this work at all or is autocomplete only for the text input field?

      posted in Help
      G
      gregorybleiker

    Latest posts made by gregorybleiker

    • RE: Typescript support for Quasar

      Hi I also have a project on 0.14 in TypeScript and am looking for pointers how to achieve that with 0.15. I suppose one would have to put the TypeScript loaders into quasar.conf.js? Anyone have any ideas on this?

      posted in CLI
      G
      gregorybleiker
    • RE: Quasar v0.15 is out!

      @Akaryatrh Thanks for the tip, I removed the local quasar-cli and reinstalled, now all is good. As you say, quite a change 🙂

      posted in Announcements
      G
      gregorybleiker
    • RE: Quasar v0.15 is out!

      Well done! I have however updated my quasar-cli and run a “quasar init bla” and it still creates a 0.14.9 quasar app… is this my installation or a general problem?

      posted in Announcements
      G
      gregorybleiker
    • RE: q-input and type file

      I guess I should open an issue on github then…?

      posted in Help
      G
      gregorybleiker
    • q-input and type file

      Hi
      I’m using

      <q-input v-model="thefile" @change="onFileChange" type="file"/>
      

      and

        onFileChange(e) {
            debugger;
          let files = e.target.files || e.dataTransfer.files;
          if (!files.length) {
            return;
          }
          this.createInput(files[0]);
        }
      

      in the component. However, neither ist “thefile” bound to the input value, nor is the onFileChange method triggered. Any pointers on what I am doing wrong?

      posted in Help
      G
      gregorybleiker
    • Autocomplete and Chips Input

      I’m trying to get autocomplete to work with the chips input. However, the search method never seems to get hit… should this work at all or is autocomplete only for the text input field?

      posted in Help
      G
      gregorybleiker
    • RE: Index property missing in config/index.js

      Excellent, it worked. I had some old conf.js files…

      Thank you!

      posted in Help
      G
      gregorybleiker
    • Index property missing in config/index.js

      Hi, is this a problem from my upgrade or is it a bug that the index property is missing in the beta template in the file config/index.js?
      It used to be:

       index: path.resolve(__dirname, '../dist/index.html'),
      

      and my

      quasar build 
      

      won’t work because of this…
      Regards
      Greg

      posted in Help
      G
      gregorybleiker