Skip to content

Commit c603974

Browse files
fix: looser v-model type behavior for checkbox, radio input tag (#2417)
1 parent 36c81b6 commit c603974

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

packages/vue-language-core/schemas/vue-tsconfig.schema.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -109,12 +109,6 @@
109109
"": {
110110
"input": true
111111
},
112-
"checked": {
113-
"input": [
114-
{ "type": "checkbox" },
115-
{ "type": "radio" }
116-
]
117-
},
118112
"value": {
119113
"input": { "type": "text" },
120114
"textarea": true,

packages/vue-language-core/src/utils/ts.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -169,12 +169,6 @@ export function resolveVueCompilerOptions(vueOptions: Partial<VueCompilerOptions
169169
'': {
170170
input: true
171171
},
172-
checked: {
173-
input: [
174-
{ type: 'checkbox' },
175-
{ type: 'radio' }
176-
]
177-
},
178172
value: {
179173
input: { type: 'text' },
180174
textarea: true,

0 commit comments

Comments
 (0)