vue3-yuanma/packages/compiler-dom/src/index.ts

23 lines
757 B
TypeScript
Raw Normal View History

import { baseCompile, CompilerOptions, CodegenResult } from '@vue/compiler-core'
import { parserOptionsMinimal } from './parserOptionsMinimal'
import { parserOptionsStandard } from './parserOptionsStandard'
import { transformStyle } from './transforms/transformStyle'
import { transformVHtml } from './transforms/vHtml'
2019-09-20 04:12:37 +00:00
export function compile(
template: string,
options: CompilerOptions = {}
): CodegenResult {
return baseCompile(template, {
...options,
...(__BROWSER__ ? parserOptionsMinimal : parserOptionsStandard),
nodeTransforms: [transformStyle, ...(options.nodeTransforms || [])],
2019-09-21 21:42:12 +00:00
directiveTransforms: {
html: transformVHtml,
2019-09-21 21:42:12 +00:00
...(options.directiveTransforms || {})
}
2019-09-20 04:12:37 +00:00
})
}
2019-09-22 20:50:57 +00:00
export * from '@vue/compiler-core'