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. Max
    3. Posts
    M
    • Profile
    • Following 0
    • Followers 2
    • Topics 1
    • Posts 130
    • Best 34
    • Groups 0

    Posts made by Max

    • MacOS Alfred Workflow for Docs

      Here is my Alfred workflow for fast and easy documentation search:

      https://github.com/mstaack/alfred-quasar-docs/releases

      posted in Show & Tell
      M
      Max
    • RE: Quasarians in Action #9. With Staff Pick of the Week!

      ♥

      posted in Useful Tips (NEW)
      M
      Max
    • RE: QCalendar v1.2.3 has been released!

      best calendar componet out there!

      posted in [v1] App Extensions
      M
      Max
    • RE: Help Integrating Auth0 with Quasar

      whats your exact problem? please share some code and infos 👍

      posted in Help
      M
      Max
    • RE: [Solved] File download suppressed?

      just an idea, i used this to download a file (item.download is the download url)

            downloadItem () {
              window.location = this.item.download
            },
      
      posted in Help
      M
      Max
    • RE: quasar dev -m electron starting but quitting after change

      please post a quasar info output

      posted in Help
      M
      Max
    • RE: Access $router outside vue

      i would try to import the router where you need it:

      import router from '/router/index';  //replace with your correct path
      
      posted in Framework
      M
      Max
    • RE: Set Initial Configuration of App window on building electron

      changing /src-electron/main-process/electron-main.js is fine!

      consider using mainWindow.maximize()

      posted in Framework
      M
      Max
    • RE: [V1] Drawer with overlay=true sets v-model back to false on page load?

      can you create a codepen with your issue? https://codepen.io/rstoenescu/pen/VgQbdx

      posted in Framework
      M
      Max
    • RE: Quasar + Vagrant

      have you searched online for a solution?
      -> http://tommylee.co/tutorials/fixing-hot-reload-vagrant.html

      you might also have to customize the webpack config to specify the new host, but dont know for sure

      posted in CLI
      M
      Max
    • RE: Using Bootstrap 4 For Grid System

      hey @miromanyth

      highly recommend not to try that!

      quasar has a full flexbox based layout/grid system

      check -> https://v1.quasar-framework.org/layout/grid/introduction-to-flexbox

      posted in Framework
      M
      Max
    • RE: is it possible to enable swipeable Tabs on browser?

      @chyde90 valid point 😉

      posted in Help
      M
      Max
    • RE: is it possible to enable swipeable Tabs on browser?

      isnt swiping only a mobile thing? how would you swipe on desktop? 🙂

      posted in Help
      M
      Max
    • RE: [v1] 'QRouteTab' component set 'disable' attribute,It didn't work.

      your codepen is always reloading currently, cant check your code. maybe its an issue on codepens side

      posted in Framework
      M
      Max
    • RE: Quasar v1.0.0-beta.9 released!

      @Recke Autocomplete and QChipsInput were migrated into https://v1.quasar-framework.org/vue-components/select

      also checkout the https://v1.quasar-framework.org/start/upgrade-guide

      posted in Announcements
      M
      Max
    • RE: [Solved] How do I reset a vuex store in Quasar?

      Quasar usage of vuex is not different. It’s all basic vuejs functionality and resetting the store could be done by any action/mutation clearing/nulling your variables.

      Any specific problems doing that?

      posted in Help
      M
      Max
    • RE: Ribbon like semantic ui

      this is not part of quasar. its a custom implementation only for the docs currently afaik

      posted in Framework
      M
      Max
    • RE: WYSIWYG Editor Text Wrapping

      did you enable IE support in quasar config?

      can you create a reproduction of your issue? maybe with https://codepen.io/rstoenescu/pen/VgQbdx

      posted in Help
      M
      Max
    • RE: From where is the ~ alias coming?

      @paul also have a look at
      https://v1.quasar-framework.org/quasar-cli/cli-documentation/handling-webpack#Webpack-Aliases

      there are most of the important aliases already built in 😉

      posted in Framework
      M
      Max
    • RE: From where is the ~ alias coming?

      should be coming from webpack’s resolve/alias feature

      posted in Framework
      M
      Max