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 dbaa710 commit 83ddb4bCopy full SHA for 83ddb4b
packages/language-core/lib/plugins/vue-template-html.ts
@@ -179,6 +179,12 @@ const plugin: VueLanguagePlugin = ({ modules }) => {
179
if (!tryUpdateNode(node.content)) {
180
return false;
181
}
182
+ if (node.content.type === CompilerDOM.NodeTypes.SIMPLE_EXPRESSION) {
183
+ const { content } = node.content;
184
+ if (content.includes('{{') || content.includes('}}')) {
185
+ return false;
186
+ }
187
188
189
else if (node.type === CompilerDOM.NodeTypes.SIMPLE_EXPRESSION) {
190
if (withinChangeRange(node.loc)) { // TODO: review this (slot name?)
0 commit comments