feat: (wip) setup compiler-sfc

This commit is contained in:
Evan You
2019-11-06 21:58:15 -05:00
parent 4b739e3bc0
commit 7031e6a07a
16 changed files with 717 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
// API
export { parse } from './parse'
export { compileTemplate } from './compileTemplate'
export { compileStyle, compileStyleAsync } from './compileStyle'
// Types
export {
SFCParseOptions,
SFCDescriptor,
SFCBlock,
SFCTemplateBlock,
SFCScriptBlock,
SFCStyleBlock
} from './parse'
export { StyleCompileOptions, StyleCompileResults } from './compileStyle'