docs(Field): remove unused CellGroup wrapper

This commit is contained in:
chenjiahan
2020-03-01 20:38:16 +08:00
parent 65bdc75ca6
commit de128b9719
12 changed files with 208 additions and 244 deletions
+13 -15
View File
@@ -1,20 +1,18 @@
<template>
<demo-block :title="$t('insertButton')">
<van-cell-group>
<van-field
v-model="sms"
center
clearable
:label="$t('sms')"
:placeholder="$t('smsPlaceholder')"
>
<template #button>
<van-button size="small" type="primary">
{{ $t('sendSMS') }}
</van-button>
</template>
</van-field>
</van-cell-group>
<van-field
v-model="sms"
center
clearable
:label="$t('sms')"
:placeholder="$t('smsPlaceholder')"
>
<template #button>
<van-button size="small" type="primary">
{{ $t('sendSMS') }}
</van-button>
</template>
</van-field>
</demo-block>
</template>