根据vuetify文档,我有一段代码具有建议的布局,并且我一生无法弄清楚为什么我所做的<v-flex>
没有响应offset
。下面是带有屏幕截图的代码:
<v-layout v-show="expanded" v-for="(row, index) of queryCopy.query_parts" :key="index" align-baseline justify-start row fill-height wrap>
<v-flex offset-xs7 sm1 mx-3>
<v-select
class="whtsp-nowrap"
label="Condition"
v-model="row.condition"
:items="options.condition"
item-text="display"
item-value="value"
@input="isRowComplete"
></v-select>
</v-flex>
<v-flex sm1 mx-3>
<v-select
label="Field"
:items="options.fields"
item-text="display"
item-value="value"
v-model="row.field"
@input="isRowComplete"
></v-select>
</v-flex>
<v-flex sm1 mx-3>
<v-select
label="Operation"
v-model="row.operator"
:items="options.operator"
item-text="display"
item-value="value"
@input="isRowComplete"
></v-select>
</v-flex>
<v-flex sm2 mx-3>
<v-text-field
label="Search Value"
v-model.lazy="row.value"
@input="isRowComplete"
></v-text-field>
</v-flex>
<v-flex shrink>
<v-btn @click="removeQueryRow(index)" class="mr-0"small icon>
<v-icon color="grayDE">clear</v-icon>
</v-btn>
</v-flex>
<v-flex>
<v-btn @click="addQueryRow" class="ma-0" small icon>
<v-icon color="primary">add</v-icon>
</v-btn>
</v-flex>
</v-layout>
我的问题是关于第一个具有offset-xs7
屏幕的伸缩框为sm
,因此它应该适用(我也尝试将其更改为无效)。
条件下拉列表应偏移为“查询条件”下
答案 0 :(得分:0)
mx-3将覆盖偏移量,因此您不能同时使用它们