Skip to content

Commit 466b30f

Browse files
authored
fix(compat): correct deprecation message for v-bind.sync usage (#13137)
close #13133
1 parent f6e84af commit 466b30f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/compiler-core/src/parser.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ const tokenizer = new Tokenizer(stack, {
388388
CompilerDeprecationTypes.COMPILER_V_BIND_SYNC,
389389
currentOptions,
390390
currentProp.loc,
391-
currentProp.rawName,
391+
currentProp.arg!.loc.source,
392392
)
393393
) {
394394
currentProp.name = 'model'

0 commit comments

Comments
 (0)