fix(runtime-core): ensure consistent $options merge behavior with 2.x (#1986)

close #1978 , close #1979
This commit is contained in:
ᴜɴвʏтᴇ
2020-08-31 20:04:06 -05:00
committed by GitHub
parent 8ed0b342d4
commit 706b52aadd
3 changed files with 51 additions and 4 deletions

View File

@@ -457,7 +457,7 @@ describe('api: createApp', () => {
app.config.optionMergeStrategies.foo = (a, b) => (a ? `${a},` : ``) + b
app.mount(nodeOps.createElement('div'))
expect(merged!).toBe('global,extends,mixin,local')
expect(merged!).toBe('local,extends,mixin,global')
})
test('config.globalProperties', () => {