This commit is contained in:
Jinjiang 2016-04-27 11:37:58 +08:00 committed by Evan You
parent a821faf294
commit 58b076b770
4 changed files with 16 additions and 16 deletions

0
build/ci.sh Normal file → Executable file
View File

View File

@ -4,8 +4,8 @@ import { compileProps } from './compile-props'
import { parseText, tokensToExp } from '../parsers/text'
import { parseDirective } from '../parsers/directive'
import { parseTemplate } from '../parsers/template'
import { resolveAsset } from '../util/index'
import {
resolveAsset,
toArray,
warn,
remove,

View File

@ -1,17 +1,3 @@
import {
set,
del,
nextTick,
mergeOptions,
classify,
toArray,
commonTagRE,
reservedTagRE,
warn,
isPlainObject,
extend
} from './util/index'
import config from './config'
import directives from './directives/public/index'
import elementDirectives from './directives/element/index'
@ -27,6 +13,20 @@ import * as transition from './transition/index'
import FragmentFactory from './fragment/factory'
import internalDirectives from './directives/internal/index'
const {
set,
del,
nextTick,
mergeOptions,
classify,
toArray,
commonTagRE,
reservedTagRE,
warn,
isPlainObject,
extend
} = util
export default function (Vue) {
/**
* Vue and every constructor that extends Vue has an

View File

@ -178,7 +178,7 @@ var testCases = [
scope: {
c: '\'c'
},
expected: "a\'b\'c",
expected: "a'b'c",
paths: ['c']
},
{