File tree 2 files changed +16
-2
lines changed
2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ import { VueConstructor } from 'vue'
9
9
*/
10
10
function mergeData ( from : AnyObject , to : AnyObject ) : Object {
11
11
if ( ! from ) return to
12
+ if ( ! to ) return from
13
+
12
14
let key : any
13
15
let toVal : any
14
16
let fromVal : any
@@ -56,8 +58,8 @@ export function install(
56
58
) {
57
59
return function mergedSetupFn ( props : any , context : any ) {
58
60
return mergeData (
59
- typeof parent === 'function' ? parent ( props , context ) || { } : { } ,
60
- typeof child === 'function' ? child ( props , context ) || { } : { }
61
+ typeof parent === 'function' ? parent ( props , context ) || { } : undefined ,
62
+ typeof child === 'function' ? child ( props , context ) || { } : undefined
61
63
)
62
64
}
63
65
}
Original file line number Diff line number Diff line change @@ -719,4 +719,16 @@ describe('setup', () => {
719
719
expect ( context ) . toBe ( vm )
720
720
} )
721
721
} )
722
+
723
+ it ( 'should work after extending with an undefined setup' , ( ) => {
724
+ const opts = {
725
+ setup ( ) {
726
+ return ( ) => h ( 'div' , 'Composition-api' )
727
+ } ,
728
+ }
729
+ const Constructor = Vue . extend ( opts ) . extend ( { } )
730
+
731
+ const vm = new Vue ( Constructor ) . $mount ( )
732
+ expect ( vm . $el . textContent ) . toBe ( 'Composition-api' )
733
+ } )
722
734
} )
You can’t perform that action at this time.
0 commit comments