From 048905aa2acf4edebd4bd294a6b47883e5186570 Mon Sep 17 00:00:00 2001 From: sunjiakun Date: Mon, 4 Sep 2023 20:02:57 +0800 Subject: [PATCH] fix TextInputExample Signed-off-by: sunjiakun --- .../reference/arkui-ts/ts-basic-components-textinput.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-textinput.md b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-textinput.md index 9b94bc0122..85682455f6 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-textinput.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-textinput.md @@ -233,7 +233,7 @@ struct TextInputExample { .maxLength(9) .showPasswordIcon(true) // 内联风格输入框 - TextInput({ placeholder: 'inline style' }) + TextInput({ text: 'inline style' }) .width(400) .height(50) .margin(20) -- GitLab