File tree Expand file tree Collapse file tree 4 files changed +16
-16
lines changed Expand file tree Collapse file tree 4 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ import { compileProps } from './compile-props'
4
4
import { parseText , tokensToExp } from '../parsers/text'
5
5
import { parseDirective } from '../parsers/directive'
6
6
import { parseTemplate } from '../parsers/template'
7
- import { resolveAsset } from '../util/index'
8
7
import {
8
+ resolveAsset ,
9
9
toArray ,
10
10
warn ,
11
11
remove ,
Original file line number Diff line number Diff line change 1
- import {
2
- set ,
3
- del ,
4
- nextTick ,
5
- mergeOptions ,
6
- classify ,
7
- toArray ,
8
- commonTagRE ,
9
- reservedTagRE ,
10
- warn ,
11
- isPlainObject ,
12
- extend
13
- } from './util/index'
14
-
15
1
import config from './config'
16
2
import directives from './directives/public/index'
17
3
import elementDirectives from './directives/element/index'
@@ -27,6 +13,20 @@ import * as transition from './transition/index'
27
13
import FragmentFactory from './fragment/factory'
28
14
import internalDirectives from './directives/internal/index'
29
15
16
+ const {
17
+ set,
18
+ del,
19
+ nextTick,
20
+ mergeOptions,
21
+ classify,
22
+ toArray,
23
+ commonTagRE,
24
+ reservedTagRE,
25
+ warn,
26
+ isPlainObject,
27
+ extend
28
+ } = util
29
+
30
30
export default function ( Vue ) {
31
31
/**
32
32
* Vue and every constructor that extends Vue has an
Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ var testCases = [
178
178
scope : {
179
179
c : '\'c'
180
180
} ,
181
- expected : "a\'b\ 'c" ,
181
+ expected : "a'b 'c" ,
182
182
paths : [ 'c' ]
183
183
} ,
184
184
{
You can’t perform that action at this time.
0 commit comments