Skip to content

Commit abf0584

Browse files
authored
Added the unchecked-value prop to the docs (#4591)
1 parent c110bbe commit abf0584

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/pages/examples/checkboxes-and-radio.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The only requirements are that the fields:
2727
When using `Field` slot props with checkbox/radio components, you still need to provide the `type` and `value` props to the `Field` node itself.
2828

2929
```vue-html
30-
<Field v-slot="{ field }" name="terms" type="checkbox" :value="true">
30+
<Field v-slot="{ field }" name="terms" type="checkbox" :value="true" :unchecked-value="false">
3131
<label>
3232
<input type="checkbox" name="terms" v-bind="field" :value="true" />
3333
I agree

0 commit comments

Comments
 (0)