refactor: useWith -> prefixIdentifiers

This commit is contained in:
Evan You
2019-09-23 13:29:41 -04:00
parent e57cb51066
commit 88e5e96a3e
7 changed files with 19 additions and 19 deletions

View File

@@ -69,7 +69,7 @@ export const enum ErrorCodes {
X_V_BIND_NO_EXPRESSION,
// generic errors
X_STRIP_WITH_NOT_SUPPORTED
X_PREFIX_ID_NOT_SUPPORTED
}
export const errorMessages: { [code: number]: string } = {
@@ -135,5 +135,5 @@ export const errorMessages: { [code: number]: string } = {
[ErrorCodes.X_FOR_MALFORMED_EXPRESSION]: `v-for has invalid expression`,
// generic errors
[ErrorCodes.X_STRIP_WITH_NOT_SUPPORTED]: `useWith: false is not supported in this build of compiler because it is optimized for payload size.`
[ErrorCodes.X_PREFIX_ID_NOT_SUPPORTED]: `"prefixIdentifiers" option is not supported in this build of compiler because it is optimized for payload size.`
}