We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fa4b65 commit 25c726eCopy full SHA for 25c726e
packages/compiler-sfc/src/index.ts
@@ -12,6 +12,17 @@ import { SFCParseResult, parseCache as _parseCache } from './parse'
12
// #9521 export parseCache as a simple map to avoid exposing LRU types
13
export const parseCache = _parseCache as Map<string, SFCParseResult>
14
15
+// error messages
16
+import {
17
+ errorMessages as coreErrorMessages,
18
+ DOMErrorMessages
19
+} from '@vue/compiler-dom'
20
+
21
+export const errorMessages = {
22
+ ...coreErrorMessages,
23
+ ...DOMErrorMessages
24
+}
25
26
// Utilities
27
export { parse as babelParse } from '@babel/parser'
28
import MagicString from 'magic-string'
0 commit comments