Here is my Alfred workflow for fast and easy documentation search:
Posts made by Max
-
MacOS Alfred Workflow for Docs
-
RE: QCalendar v1.2.3 has been released!
best calendar componet out there!
-
RE: Help Integrating Auth0 with Quasar
whats your exact problem? please share some code and infos
-
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 },
-
RE: quasar dev -m electron starting but quitting after change
please post a
quasar info
output -
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
-
RE: Set Initial Configuration of App window on building electron
changing
/src-electron/main-process/electron-main.js
is fine!consider using
mainWindow.maximize()
-
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
-
RE: Quasar + Vagrant
have you searched online for a solution?
-> http://tommylee.co/tutorials/fixing-hot-reload-vagrant.htmlyou might also have to customize the webpack config to specify the new host, but dont know for sure
-
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
-
RE: is it possible to enable swipeable Tabs on browser?
isnt swiping only a mobile thing? how would you swipe on desktop?
-
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
-
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
-
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?
-
RE: Ribbon like semantic ui
this is not part of quasar. its a custom implementation only for the docs currently afaik
-
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
-
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-Aliasesthere are most of the important aliases already built in
-
RE: From where is the ~ alias coming?
should be coming from webpack’s resolve/alias feature