0👍
Couple things:
- your last Label has
col
instead of column. auto
in therows
/columns
field of the grid layout means “let this component take up the space it needs for its dimensions.”*
means “take up the available space remaining.” You can also do things like2*
to say “this item should take up 2 times the remaining space as the other items.”- if the components are overflowing the GridLayout then maybe the sum of all your items inside the GridLayout is greater than the height of the GridLayout. Consider settings heights on your labels or increasing the height of your GridLayout.
- [Vuejs]-Height of webpage changes after uploading to heroku server
- [Vuejs]-Trouble registering a property in App.vue
Source:stackexchange.com