我可以将页面分为两列,但我不能。
<template>
<div class="server">
<v-container width="100%" class="ma-0 grey lighten-5">
<v-row no-gutters>
<v-col
v-for="n in 2"
:key="n"
cols="12"
sm="6"
>
<v-card
class="pa-2"
outlined
tile
>
One of three columns
</v-card>
</v-col>
</v-row>
</v-container>
</div>
上面给出了我的代码。
我无法调整列,它们的左右边距必须为0,填充高度必须为
必须是这样。
服务器视图和数据网格将放置在页面的两列中。
谢谢。