Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import { baseCompile, baseParse, CompilerOptions, CodegenResult, ParserOptions, RootNode, noopDirectiveTransform, NodeTransform, DirectiveTransform, } from '@vue/compiler-core' import { parserOptions } from './parserOptions' import { transformStyle } from './transforms/transformStyle' // import { transformVHtml } from './transforms/vHtml' import { transformVText } from './transforms/vText' import { transformModel } from './transforms/vModel' import { transformOn } from './transforms/vOn' import { transformShow } from './transforms/vShow' // import { warnTransitionChildren } from './transforms/warnTransitionChildren' // import { stringifyStatic } from './transforms/stringifyStatic' export { parserOptions } export const DOMNodeTransforms: NodeTransform[] = [ transformStyle, // ...(__DEV__ ? [warnTransitionChildren] : []) ] export const DOMDirectiveTransforms: Record<string, DirectiveTransform> = { cloak: noopDirectiveTransform, text: transformVText, model: transformModel, // override compiler-core on: transformOn, // override compiler-core todo: remove if not needed show: transformShow, } export function compile( template: string, options: CompilerOptions = {} ): CodegenResult { return baseCompile(template, { ...parserOptions, ...options, nodeTransforms: [...DOMNodeTransforms, ...(options.nodeTransforms || [])], directiveTransforms: { ...DOMDirectiveTransforms, ...(options.directiveTransforms || {}), }, // transformHoist: stringifyStatic }) } export function parse(template: string, options: ParserOptions = {}): RootNode { return baseParse(template, { ...parserOptions, ...options, }) } export * from './runtimeHelpers' export { transformStyle } from './transforms/transformStyle' export { createDOMCompilerError, DOMErrorCodes } from './errors' export * from '@vue/compiler-core' |