Skip to content

Commit c3b704e

Browse files
committed
chore: remove v-is deprecation enum
support is already removed during parser rewrite
1 parent 8abc754 commit c3b704e

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

packages/compiler-core/src/errors.ts

-6
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,6 @@ export enum ErrorCodes {
9898
X_CACHE_HANDLER_NOT_SUPPORTED,
9999
X_SCOPE_ID_NOT_SUPPORTED,
100100

101-
// deprecations
102-
DEPRECATION_V_IS,
103-
104101
// Special value for higher-order compilers to pick up the last code
105102
// to avoid collision of error codes. This should always be kept as the last
106103
// item.
@@ -184,9 +181,6 @@ export const errorMessages: Record<ErrorCodes, string> = {
184181
[ErrorCodes.X_CACHE_HANDLER_NOT_SUPPORTED]: `"cacheHandlers" option is only supported when the "prefixIdentifiers" option is enabled.`,
185182
[ErrorCodes.X_SCOPE_ID_NOT_SUPPORTED]: `"scopeId" option is only supported in module mode.`,
186183

187-
// deprecations
188-
[ErrorCodes.DEPRECATION_V_IS]: `v-is="component-name" has been deprecated. Use is="vue:component-name" instead. v-is support will be removed in 3.4.`,
189-
190184
// just to fulfill types
191185
[ErrorCodes.__EXTEND_POINT__]: ``
192186
}

0 commit comments

Comments
 (0)