Skip to content

Commit e1ecf7a

Browse files
committed
Simpler import syntax.
1 parent dd6bd19 commit e1ecf7a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/global-api/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ import {
1717
defineReactive
1818
} from '../util/index'
1919

20-
import { default as Dep, pushTarget, popTarget } from '../observer/dep'
20+
import Dep, { pushTarget, popTarget } from '../observer/dep'
2121
import { afterFlush, forceFlush } from '../observer/scheduler'
22-
import { default as Watcher } from '../observer/watcher'
22+
import Watcher from '../observer/watcher'
2323

2424
export function initGlobalAPI (Vue: GlobalAPI) {
2525
// config

0 commit comments

Comments
 (0)