0👍
I found that the scrollbar is generated by the v-row
.
The default style of v-row
has an attribute of flex-wrap: auto
, so I have to modify my v-row
to have style="flex-wrap: nowrap"
.
Now since there is no scrollbar, the right v-col
will not be wrapped anymore.
Source:stackexchange.com