File tree Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -45,15 +45,31 @@ const data = () => ({
45
45
componentProperties : {
46
46
attrs : {
47
47
// Components which support the 'checked' attribute
48
- checked : [ 'checkbox' , 'radio' ] ,
48
+ checked : [
49
+ {
50
+ component : 'input' ,
51
+ attrs : {
52
+ type : 'checkbox' ,
53
+ } ,
54
+ } ,
55
+ 'radio' ,
56
+ ] ,
49
57
// Components which support the 'required' attribute
50
58
required : [ 'input' , 'select' , 'textarea' ] ,
51
59
// Components which support the 'value' attribute
52
60
value : [ 'input' , 'option' , 'textarea' ] ,
53
61
} ,
54
62
domProps : {
55
63
// Components which should have its DOM property 'checked' updated
56
- checked : [ 'checkbox' , 'radio' ] ,
64
+ checked : [
65
+ {
66
+ component : 'input' ,
67
+ attrs : {
68
+ type : 'checkbox' ,
69
+ } ,
70
+ } ,
71
+ 'radio' ,
72
+ ] ,
57
73
// Components which should have its DOM property 'required' updated
58
74
required : [ 'input' , 'select' , 'textarea' ] ,
59
75
// Components which should have its DOM property 'value' updated
You can’t perform that action at this time.
0 commit comments