File tree Expand file tree Collapse file tree 3 files changed +26
-11
lines changed
example/src/InlineValidationsForm Expand file tree Collapse file tree 3 files changed +26
-11
lines changed Original file line number Diff line number Diff line change 1+ ## 1.4.0
2+
3+ ### Added:
4+
5+ - Support for integrated FormItem for all components via ` formItem ` prop
6+ - [ <RadioGroup />] ( /VueForm/RadioGroup.js )
7+ - [ <CheckboxGroup />] ( /VueForm/CheckboxGroup.js )
Original file line number Diff line number Diff line change @@ -63,18 +63,26 @@ See demo at [https://detools.github.io/vue-form](https://detools.github.io/vue-f
6363
6464## Available Connected Components
6565
66- - Checkbox
67- - DatePicker
68- - Input
69- - InputNumber
70- - Radio
71- - Select
72- - Slider
73- - Switch
74- - TimePicker
75- - Form
66+ - [ Checkbox] ( /VueForm/Checkbox.js )
67+ - [ CheckboxGroup] ( /VueForm/CheckboxGroup.js )
68+ - [ DatePicker] ( /VueForm/DatePicker.js )
69+ - [ Input] ( /VueForm/Input.js )
70+ - [ InputNumber] ( /VueForm/InputNumber.js )
71+ - [ Radio] ( /VueForm/Radio.js )
72+ - [ RadioGroup] ( /VueForm/RadioGroup.js )
73+ - [ Select] ( /VueForm/Select.js )
74+ - [ Slider] ( /VueForm/Slider.js )
75+ - [ Switch] ( /VueForm/Switch.js )
76+ - [ TimePicker] ( /VueForm/TimePicker.js )
77+ - [ Form] ( /VueForm/Form.vue )
7678
7779## Roadmap
7880
7981- Add remaining components
82+ - <Upload />
83+ - <Rate />
8084- Add validation examples
85+ - [ Field level sync validation] ( https://detools.github.io/vue-form/#inline-validations-form )
86+ - Form level sync validation
87+ - Field level async validation
88+ - Form level async validation
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ export default {
1717 render () {
1818 return (
1919 < div>
20- < h1> Inline Validations Form< / h1>
20+ < h1 id = " inline-validations-form " > Inline Validations Form< / h1>
2121 < div class = " wrapper" >
2222 < div class = " form" >
2323 < Form reset save submit handleSubmit= {this .handleSubmit }>
You can’t perform that action at this time.
0 commit comments