We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c110bbe commit abf0584Copy full SHA for abf0584
docs/src/pages/examples/checkboxes-and-radio.mdx
@@ -27,7 +27,7 @@ The only requirements are that the fields:
27
When using `Field` slot props with checkbox/radio components, you still need to provide the `type` and `value` props to the `Field` node itself.
28
29
```vue-html
30
-<Field v-slot="{ field }" name="terms" type="checkbox" :value="true">
+<Field v-slot="{ field }" name="terms" type="checkbox" :value="true" :unchecked-value="false">
31
<label>
32
<input type="checkbox" name="terms" v-bind="field" :value="true" />
33
I agree
0 commit comments