docs(vant): keep the doc consistent with the demo code (#10554)

This commit is contained in:
Alan Wang 2022-04-26 20:57:15 +08:00 committed by GitHub
parent 004f642622
commit a33d304d53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -115,7 +115,7 @@ export default {
setup() { setup() {
const value1 = ref(''); const value1 = ref('');
const value2 = ref(''); const value2 = ref('');
const value3 = ref(''); const value3 = ref('abc');
const value4 = ref(''); const value4 = ref('');
const pattern = /\d{6}/; const pattern = /\d{6}/;
@ -129,7 +129,7 @@ export default {
setTimeout(() => { setTimeout(() => {
Toast.clear(); Toast.clear();
resolve(/\d{6}/.test(val)); resolve(val === '1234');
}, 1000); }, 1000);
}); });

View File

@ -123,7 +123,7 @@ export default {
setup() { setup() {
const value1 = ref(''); const value1 = ref('');
const value2 = ref(''); const value2 = ref('');
const value3 = ref(''); const value3 = ref('abc');
const value4 = ref(''); const value4 = ref('');
const pattern = /\d{6}/; const pattern = /\d{6}/;
@ -140,7 +140,7 @@ export default {
setTimeout(() => { setTimeout(() => {
Toast.clear(); Toast.clear();
resolve(/\d{6}/.test(val)); resolve(val === '1234');
}, 1000); }, 1000);
}); });