[Vuejs]-Quasar q-drawer behaves inconsistently

0👍

This issue can be fix with css to force break lines

.q-item__section  { white-space: break-spaces; }

or otherwise to keep one line

.q-item__section  { white-space: nowrap; }

Leave a comment