gpt4 book ai didi

html - Vuetify Offset 不创建任何偏移量

转载 作者:太空宇宙 更新时间:2023-11-04 06:18:23 24 4
gpt4 key购买 nike

根据 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 的 flex box屏幕是sm所以它应该适用(我也尝试更改它但无济于事)。 enter image description here条件下拉列表应偏移到“查询条件”下

最佳答案

mx-3 会覆盖偏移量,所以你不能同时使用它们

关于html - Vuetify Offset 不创建任何偏移量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55743805/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com