Vuetify Version: 2.0.0
Last working version: 1.5.16
Vue Version: 2.0.0
Browsers: Chrome 75.0.3770.142
OS: Windows 10
Children should be maintained on single row
Children will wrap
https://codepen.io/pklitscher/pen/rXeJmy
.row {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
margin-right: -12px;
margin-left: -12px;
}
.row css appears to have wrap set. This was not the case in 1.5.16
I had a look through the migration docs and could not see info about the change.
Sorry if this is intended behaviour and I am abusing v-layout.
Thank you for 2.0 - it's like Christmas.
You're abusing v-layout, .row is part of the new grid system and was never actually needed before.
eslint-plugin-vuetify will now remove it for you: https://github.com/vuetifyjs/eslint-plugin-vuetify/releases/tag/v1.0.0-beta.2
Oh sweet, cheers @KaelWD .
Good call on getting rid of row.
Row is still listed as a prop in the docs and that would be super helpful in the upgrade guide
it's pain (

@KaelWD
You're abusing v-layout, .row is part of the new grid system and was never actually needed before.
I'd like to note that the 1.x documentation explicitly used the row prop in examples... If it wasn't meant to be used/not necessary, the documentation examples probably shouldn't be consistently using it?
6f502dfeb27ddb8de28eb140aef8857c754b0f92
Most helpful comment
@KaelWD
I'd like to note that the 1.x documentation explicitly used the
rowprop in examples... If it wasn't meant to be used/not necessary, the documentation examples probably shouldn't be consistently using it?