i have a layout which each row has 4 divs, now in mobile i want to change 4 divs to 2 divs like image
here is my code
<v-layout wrap align-center>
<v-flex
v-for="n in 10 "
:key="n"
xs3
>
<p>testtttt</p>
</v-flex>
</v-layout>
Example from Vuetify https://codepen.io/thanhtungvo/pen/Padagq?&editors=100 current there are 3 images, how to change 2 images and keep the max-width in mobile version(responsive) Thanks