Skip to content

Commit 58b076b

Browse files
Jinjiangyyx990803
authored andcommitted
ci bugfix (#2730)
1 parent a821faf commit 58b076b

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

build/ci.sh

100644100755
File mode changed.

src/compiler/compile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import { compileProps } from './compile-props'
44
import { parseText, tokensToExp } from '../parsers/text'
55
import { parseDirective } from '../parsers/directive'
66
import { parseTemplate } from '../parsers/template'
7-
import { resolveAsset } from '../util/index'
87
import {
8+
resolveAsset,
99
toArray,
1010
warn,
1111
remove,

src/global-api.js

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,3 @@
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-
151
import config from './config'
162
import directives from './directives/public/index'
173
import elementDirectives from './directives/element/index'
@@ -27,6 +13,20 @@ import * as transition from './transition/index'
2713
import FragmentFactory from './fragment/factory'
2814
import internalDirectives from './directives/internal/index'
2915

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+
3030
export default function (Vue) {
3131
/**
3232
* Vue and every constructor that extends Vue has an

test/unit/specs/parsers/expression_spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ var testCases = [
178178
scope: {
179179
c: '\'c'
180180
},
181-
expected: "a\'b\'c",
181+
expected: "a'b'c",
182182
paths: ['c']
183183
},
184184
{

0 commit comments

Comments
 (0)