From c14f569e9b968dd080af418df96e4d5d7d3f9f59 Mon Sep 17 00:00:00 2001 From: zhenyuWang <13641039885@163.com> Date: Mon, 30 Oct 2023 12:26:04 +0800 Subject: [PATCH] =?UTF-8?q?perf(uts):=20=E8=87=AA=E5=AE=9A=E4=B9=89?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=20v-model=20=E7=BB=91=E5=AE=9A=E5=A4=8D?= =?UTF-8?q?=E6=9D=82=E8=A1=A8=E8=BE=BE=E5=BC=8F=E6=8F=90=E9=86=92=E8=A1=A5?= =?UTF-8?q?=E5=85=85=E9=93=BE=E6=8E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/plugins/android/uvue/compiler/transforms/vModel.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/uni-app-uts/src/plugins/android/uvue/compiler/transforms/vModel.ts b/packages/uni-app-uts/src/plugins/android/uvue/compiler/transforms/vModel.ts index e860cc9995..629784c83b 100644 --- a/packages/uni-app-uts/src/plugins/android/uvue/compiler/transforms/vModel.ts +++ b/packages/uni-app-uts/src/plugins/android/uvue/compiler/transforms/vModel.ts @@ -21,7 +21,7 @@ export const transformModel: DirectiveTransform = (dir, node, context) => { ) { context.onError( createCompilerError(100, dir.loc, { - 100: `When custom components use "v-model" to bind complex expressions, you must specify the type using "as".`, + 100: `When custom components use "v-model" to bind complex expressions, you must specify the type using "as", 详见:https://uniapp.dcloud.net.cn/uni-app-x/component/#v-model-complex-expression`, }) ) } -- GitLab