Skip to content

Commit bf55f1c

Browse files
committed
docs: fix config name on example for #4346
1 parent eada013 commit bf55f1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/components/examples/CompositionComponentBindsBasic05.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const email = defineInputBinds('email', state => {
2020
const emailComponent = defineComponentBinds('emailComponent', state => {
2121
return {
2222
// validate aggressively as long as there are errors on the input
23-
validateOnValueUpdate: state.errors.length > 0,
23+
validateOnModelUpdate: state.errors.length > 0,
2424
validateOnBlur: true,
2525
props: {
2626
error: state.errors[0],

0 commit comments

Comments
 (0)