[solved] Space about v-bind q-select's label
-
Hi all,
Because of poor long English expression
I made a codepen to express my problem
https://codepen.io/bebe199671554/pen/RwPGgro?editors=1010
I hope to solve this problem without css
Thanks in advance
-
@kuma46 dont set a label prop. Or set it to undefined, if it’s coming from a data variable then you have to use a condition, something like
:label="someVar === null ? undefined : someVar"
.
https://codepen.io/metalsadman/pen/mdJrMrj?editors=1010 -
@metalsadman thanks, that solved my issue.