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 15f6feb commit dfa4128Copy full SHA for dfa4128
packages/language-core/lib/codegen/template/elementDirectives.ts
@@ -36,7 +36,10 @@ export function* generateElementDirectives(
36
) {
37
continue;
38
}
39
- ctx.accessExternalVariable(camelize('v-' + prop.name), prop.loc.start.offset);
+
40
+ if (!builtInDirectives.has(prop.name)) {
41
+ ctx.accessExternalVariable(camelize('v-' + prop.name), prop.loc.start.offset);
42
+ }
43
44
yield* wrapWith(
45
prop.loc.start.offset,
0 commit comments