Skip to content

Commit a6169d1

Browse files
privatenumberyyx990803
authored andcommitted
fix(model): fix static input type being overwritten by v-bind object (#7819)
fix #7811
1 parent 6dd73e9 commit a6169d1

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

src/platforms/web/compiler/modules/model.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ function preTransformNode (el: ASTElement, options: CompilerOptions) {
3434
if (map[':type'] || map['v-bind:type']) {
3535
typeBinding = getBindingAttr(el, 'type')
3636
}
37-
if (!typeBinding && map['v-bind']) {
37+
if (!map.type && !typeBinding && map['v-bind']) {
3838
typeBinding = `(${map['v-bind']}).type`
3939
}
4040

test/unit/features/directives/model-checkbox.spec.js

+11
Original file line numberDiff line numberDiff line change
@@ -337,4 +337,15 @@ describe('Directive v-model checkbox', () => {
337337
expect(vm.$el.children[1].textContent).toBe('false')
338338
}).then(done)
339339
})
340+
341+
// #7811
342+
it('type should not be overwritten by v-bind', () => {
343+
const vm = new Vue({
344+
data: {
345+
test: true
346+
},
347+
template: '<input type="checkbox" v-model="test" v-bind="$attrs">'
348+
}).$mount()
349+
expect(vm.$el.type).toBe('checkbox')
350+
})
340351
})

0 commit comments

Comments
 (0)