Skip to content

Commit 66fd3c8

Browse files
lbogdanyyx990803
authored andcommitted
fix(v-model): add value to $attrs if not defined in props (#9331)
fix #9330
1 parent 0fb03b7 commit 66fd3c8

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

src/core/vdom/create-component.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,8 @@ function mergeHook (f1: any, f2: any): Function {
250250
function transformModel (options, data: any) {
251251
const prop = (options.model && options.model.prop) || 'value'
252252
const event = (options.model && options.model.event) || 'input'
253-
;(data.props || (data.props = {}))[prop] = data.model.value
253+
const addTo = (options.props && prop in options.props) ? 'props' : 'attrs'
254+
;(data[addTo] || (data[addTo] = {}))[prop] = data.model.value
254255
const on = data.on || (data.on = {})
255256
const existing = on[event]
256257
const callback = data.model.callback

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

+26
Original file line numberDiff line numberDiff line change
@@ -204,4 +204,30 @@ describe('Directive v-model component', () => {
204204
expect(triggerCount).toBe(1)
205205
document.body.removeChild(vm.$el)
206206
})
207+
208+
// #9330
209+
it('should add value to $attrs if not defined in props', () => {
210+
const TestComponent = {
211+
inheritAttrs: false,
212+
render (h) {
213+
return h('div', this.$attrs.value)
214+
}
215+
}
216+
217+
const vm = new Vue({
218+
components: {
219+
TestComponent
220+
},
221+
template: `
222+
<div>
223+
<test-component v-model="val"/>
224+
</div>
225+
`,
226+
data: {
227+
val: 'foo'
228+
}
229+
}).$mount()
230+
231+
expect(vm.$el.innerHTML).toBe('<div>foo</div>');
232+
})
207233
})

0 commit comments

Comments
 (0)