From b9879cf12996794a04df8dd39ccbdd7c5a1fa7f4 Mon Sep 17 00:00:00 2001 From: sunjiakun Date: Mon, 4 Sep 2023 20:02:57 +0800 Subject: [PATCH] fixed 048905a from https://gitee.com/sunjiakun/docs/pulls/23809 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