docs(Form): fix missing quote (#5820)

This commit is contained in:
chenjiahan 2020-03-14 18:32:28 +08:00
parent 3c727fe413
commit 7bfc1a6616
2 changed files with 6 additions and 6 deletions

View File

@ -62,19 +62,19 @@ export default {
v-model="value1" v-model="value1"
name="pattern" name="pattern"
placeholder="USe pattern" placeholder="USe pattern"
:rules="[{ pattern, message: 'Error message }]" :rules="[{ pattern, message: 'Error message' }]"
/> />
<van-field <van-field
v-model="value2" v-model="value2"
name="validator" name="validator"
placeholder="Use validator" placeholder="Use validator"
:rules="[{ validator, message: 'Error message }]" :rules="[{ validator, message: 'Error message' }]"
/> />
<van-field <van-field
v-model="value3" v-model="value3"
name="asyncValidator" name="asyncValidator"
placeholder="Use async validator" placeholder="Use async validator"
:rules="[{ validator: asyncValidator, message: 'Error message }]" :rules="[{ validator: asyncValidator, message: 'Error message' }]"
/> />
<div style="margin: 16px;"> <div style="margin: 16px;">
<van-button round block type="info" native-type="submit"> <van-button round block type="info" native-type="submit">

View File

@ -71,21 +71,21 @@ export default {
v-model="value1" v-model="value1"
name="pattern" name="pattern"
placeholder="正则校验" placeholder="正则校验"
:rules="[{ pattern, message: '请输入正确内容 }]" :rules="[{ pattern, message: '请输入正确内容' }]"
/> />
<!-- 通过 validator 进行函数校验 --> <!-- 通过 validator 进行函数校验 -->
<van-field <van-field
v-model="value2" v-model="value2"
name="validator" name="validator"
placeholder="函数校验" placeholder="函数校验"
:rules="[{ validator, message: '请输入正确内容 }]" :rules="[{ validator, message: '请输入正确内容' }]"
/> />
<!-- 通过 validator 进行异步函数校验 --> <!-- 通过 validator 进行异步函数校验 -->
<van-field <van-field
v-model="value3" v-model="value3"
name="asyncValidator" name="asyncValidator"
placeholder="异步函数校验" placeholder="异步函数校验"
:rules="[{ validator: asyncValidator, message: '请输入正确内容 }]" :rules="[{ validator: asyncValidator, message: '请输入正确内容' }]"
/> />
<div style="margin: 16px;"> <div style="margin: 16px;">
<van-button round block type="info" native-type="submit"> <van-button round block type="info" native-type="submit">