bit late but here you go

benoitranque
@benoitranque
Posts made by benoitranque
-
RE: How can I put the "Drawer" between the header and the footer (toolbars), opening and closing between them?
Sure. Take a look at the
view
prop of q-layoutYou would set
view="HHH LpR fff"
for example. Also take a look at theoverlay
prop of q-layout-drawer -
RE: Async code in App Plugins
@zmilan just make sure you read the corresponding docs. The
boot
plugin is special -
RE: Adding a button to a cell within a datatable
if you are not using the body slot, you can target a specific cell using
slot="body-cell-{column-name}"
wherecolumn-name
is the thename
of one of the columns in your column definition. -
RE: Printing in an electron dev
const { remote } = require('electron') remote.getCurrentWebContents().print()
-
RE: Upgrade Old Project
You can migrate your old project: create a new project and move things carefully, one by one to the new project.
To run the last compatible quasar-cli on older project see the docs -
RE: <q-input /> with float-label has no margin or padding top
Working as intended. If you want padding add it yourself
-
RE: Dependency was not found using a npm package
you should be using ES6 import instead of require
-
RE: Using plugin quasar/vue in Vuex
No I do not. Try this here, dispatch that action from a vue component