We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d833cba commit 206813bCopy full SHA for 206813b
.eslintrc
@@ -1,6 +1,7 @@
1
{
2
"extends": "standard",
3
"rules": {
4
- "arrow-parens": [2, "as-needed"]
+ "arrow-parens": [2, "as-needed"],
5
+ "no-duplicate-imports": 0
6
}
7
src/global-api.js
@@ -13,7 +13,7 @@ import * as transition from './transition/index'
13
import FragmentFactory from './fragment/factory'
14
import internalDirectives from './directives/internal/index'
15
16
-const {
+import {
17
set,
18
del,
19
nextTick,
@@ -25,7 +25,7 @@ const {
25
warn,
26
isPlainObject,
27
extend
28
-} = util
+} from './util/index'
29
30
export default function (Vue) {
31
/**
0 commit comments