Width attribute on `q-layout-drawer` giving error in browser console
-
<q-layout-drawer v-model="toggleRightPanel" side="right" width="392">
Is producing
vue.runtime.esm.js?2b0e:587 [Vue warn]: Invalid prop: type check failed for prop "width". Expected Number, got String. found in ---> <QLayoutDrawer>
-
@toymachiner62
use:width="392"
orwidth=392
. -
“width” prop is a Number, so give it a number like metalsadman suggested:
:width="392"
.