https://vuestic.epicmax.co/#/auth/login我想要的东西,看起来好像在上面的链接。
发布于 2019-05-29 14:24:17
在使用Vuetify时,可以使用container、layout和flex列来创建:
<v-container>
<v-layout row wrap>
<!-- xs12 and sm12 to make it responsive = 12 columns on mobile and 6 columns from medium to XL layouts -->
<v-flex xs12 sm12 md6>
<!-- Login form here -->
</v-flex>
<v-flex xs12 sm12 md6>
<!-- artwork here -->
</v-flex>
</v-layout>
</v-container>有关如何使用网格系统的更多详细信息,请单击此处:https://vuetifyjs.com/en/framework/grid
https://stackoverflow.com/questions/56353385
复制相似问题