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 88669db commit c5fd0b9Copy full SHA for c5fd0b9
src/raw.ts
@@ -134,7 +134,7 @@ export async function transformReactivityFunction(
134
s.remove(node.callee.start, node.callee.start + 1)
135
}
136
137
- if (calleeName.endsWith('$')) {
+ if (calleeName.endsWith('$') && !['$', '$$'].includes(calleeName)) {
138
s.remove(node.callee.end - 1, node.callee.end)
139
140
node.arguments.forEach((argument) => {
src/volar.ts
@@ -210,7 +210,7 @@ function transformReactivityFunction(options: {
210
)
211
212
213
214
replaceSourceRange(
215
codes,
216
source,
0 commit comments