Vuetify网格布局v-布局v-flex

时间:2019-02-26 22:06:55

标签: vue.js grid responsive vuetify.js

我希望文本框在屏幕上大于sm的6列,而在移动设备上为12列。

我使用了vuetify网格,但是无法正常工作。

这是我的代码:

<v-card-text>
        <v-layout   warp>
          <v-flex xs12 sm6  class="pa-1">
            <v-text-field
              ref="name"
              v-model="password.name"
              label="Name"
              solo
              placeholder="Full Name"
              counter="25"
            ></v-text-field>
          </v-flex>
          <v-flex xs12 sm6  class="pa-1">
            <v-combobox
              v-model="password.keys"
              label="Add keys"
              chips
              solo
              multiple
            >
              <template slot="selection" slot-scope="data">
                <v-chip :selected="data.selected" close @input="remove(data.item)">
                  <strong>{{ data.item}}</strong>&nbsp;
                </v-chip>
              </template>
            </v-combobox>
          </v-flex>
        </v-layout>

在移动视图中,元素位于同一行。

可能是什么原因,我该如何解决?

这是移动版本:

enter image description here

1 个答案:

答案 0 :(得分:1)

您在“ v-layout”上有错字,应该不弯曲。

https://codesandbox.io/s/my49o8vo9y