File tree 2 files changed +25
-3
lines changed
src/core/instance/render-helpers
test/unit/features/directives
2 files changed +25
-3
lines changed Original file line number Diff line number Diff line change 6
6
warn ,
7
7
isObject ,
8
8
toObject ,
9
- isReservedAttribute
9
+ isReservedAttribute ,
10
+ camelize
10
11
} from 'core/util/index'
11
12
12
13
/**
@@ -43,12 +44,13 @@ export function bindObjectProps (
43
44
? data . domProps || ( data . domProps = { } )
44
45
: data . attrs || ( data . attrs = { } )
45
46
}
46
- if ( ! ( key in hash ) ) {
47
+ const camelizedKey = camelize ( key )
48
+ if ( ! ( key in hash ) && ! ( camelizedKey in hash ) ) {
47
49
hash [ key ] = value [ key ]
48
50
49
51
if ( isSync ) {
50
52
const on = data . on || ( data . on = { } )
51
- on [ `update:${ key } ` ] = function ( $event ) {
53
+ on [ `update:${ camelizedKey } ` ] = function ( $event ) {
52
54
value [ key ] = $event
53
55
}
54
56
}
Original file line number Diff line number Diff line change @@ -187,6 +187,26 @@ describe('Directive v-bind', () => {
187
187
} ) . then ( done )
188
188
} )
189
189
190
+ it ( 'bind object with explicit overrides' , ( ) => {
191
+ const vm = new Vue ( {
192
+ template : `<test v-bind="test" data-foo="foo" dataBar="bar"/>` ,
193
+ components : {
194
+ test : {
195
+ template : '<div :data-foo="dataFoo" :data-bar="dataBar"></div>' ,
196
+ props : [ 'dataFoo' , 'dataBar' ]
197
+ }
198
+ } ,
199
+ data : {
200
+ test : {
201
+ dataFoo : 'hi' ,
202
+ dataBar : 'bye'
203
+ }
204
+ }
205
+ } ) . $mount ( )
206
+ expect ( vm . $el . getAttribute ( 'data-foo' ) ) . toBe ( 'foo' )
207
+ expect ( vm . $el . getAttribute ( 'data-bar' ) ) . toBe ( 'bar' )
208
+ } )
209
+
190
210
it ( '.sync modifier with bind object' , done => {
191
211
const vm = new Vue ( {
192
212
template : `<test v-bind.sync="test"/>` ,
You can’t perform that action at this time.
0 commit comments