mirror of https://github.com/vuejs/core.git
feat(compiler-core): export error message (#8729)
This commit is contained in:
parent
9e77580c0c
commit
f7e80ee4a0
|
@ -24,6 +24,7 @@ export {
|
|||
export { generate, type CodegenContext, type CodegenResult } from './codegen'
|
||||
export {
|
||||
ErrorCodes,
|
||||
errorMessages,
|
||||
createCompilerError,
|
||||
type CoreCompilerError,
|
||||
type CompilerError
|
||||
|
|
|
@ -68,5 +68,9 @@ export function parse(template: string, options: ParserOptions = {}): RootNode {
|
|||
|
||||
export * from './runtimeHelpers'
|
||||
export { transformStyle } from './transforms/transformStyle'
|
||||
export { createDOMCompilerError, DOMErrorCodes } from './errors'
|
||||
export {
|
||||
createDOMCompilerError,
|
||||
DOMErrorCodes,
|
||||
DOMErrorMessages
|
||||
} from './errors'
|
||||
export * from '@vue/compiler-core'
|
||||
|
|
Loading…
Reference in New Issue