diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-container-tabcontent.md b/zh-cn/application-dev/reference/arkui-ts/ts-container-tabcontent.md
index dcd23fcc36c703fc73f6615056b47e9a766fc3eb..a6f885c67ca32ad71ee71059e31dc5fb54d75782 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-container-tabcontent.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-container-tabcontent.md
@@ -34,7 +34,7 @@ TabContent()
子页签样式。
-### constructor9+
+### constructor
constructor(content: string | Resource)
@@ -44,15 +44,71 @@ SubTabBarStyle的构造函数。
| 参数名 | 参数类型 | 必填 | 参数描述 |
| -------- | -------- | -------- | -------- |
-| content | string \| [Resource](ts-types.md#resource) | 是 | 页签内的文字内容。 |
+| content | string \| [Resource](ts-types.md#resource) | 是 | 页签内的文字内容。从API version 10开始,content类型为ResourceStr。 |
+
+### of10+
+
+static of(content: ResourceStr)
+
+SubTabBarStyle的静态构造函数。
+
+**参数:**
+
+| 参数名 | 参数类型 | 必填 | 参数描述 |
+| ------- | ------------------------------------------ | ---- | ------------------ |
+| content | [ResourceStr](ts-types.md#resourcestr) | 是 | 页签内的文字内容。 |
+
+### 属性
+
+支持以下属性:
+
+| 名称 | 参数类型 | 描述 |
+| ------------ | ------------------------------------------------------------ | ------------------------------------------------------------ |
+| indicator10+ | [IndicatorStyle](#indicatorstyle10对象说明)| 设置选中子页签的下划线风格。
|
+| selectedMode10+ | [SelectedMode](#selectedmode10枚举说明) | 设置选中子页签的显示方式。
默认值:SelectedMode.Indicator |
+| board10+ | [BoardStyle](#boardstyle10对象说明) | 设置选中子页签的背板风格。 |
+| labelStyle10+ | [LabelStyle](#labelstyle10对象说明) | 设置选中子页签的label文本和字体的样式。 |
+
+## IndicatorStyle10+对象说明
+
+| 名称 | 参数类型 | 必填 | 描述 |
+| -------- | -------- | -------- | -------------------------------- |
+| color | [ResourceColor](ts-types.md#resourcecolor) | 否 | 下划线的颜色。
默认值:#FF007DFF |
+| height | [Length](ts-types.md#length) | 否 | 下划线的高度。
默认值:2.0vp |
+| width | [Length](ts-types.md#length) | 否 | 下划线的宽度。
默认值:0.0vp |
+| borderRadius | [Length](ts-types.md#length) | 否 | 下划线的圆角半径。
默认值:0.0vp |
+| marginTop | [Length](ts-types.md#length) | 否 | 下划线与文字的间距。
默认值:8.0vp |
+
+## SelectedMode10+枚举说明
+| 名称 | 描述 |
+| ---------- | ------------------------ |
+| Indicator | 使用下划线模式。 |
+| Board | 使用背板模式。 |
+
+## BoardStyle10+对象说明
+
+| 名称 | 参数类型 | 必填 | 描述 |
+| -------- | -------- | -------- | ------------------------------------ |
+| borderRadius | [Length](ts-types.md#length) | 否 | 下划线的圆角半径。
默认值:8.0vp |
+
+## LabelStyle10+对象说明
+
+| 名称 | 参数类型 | 必填 | 描述 |
+| -------------------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
+| overflow | [TextOverflow](ts-appendix-enums.md#textoverflow) | 否 | 设置Label文本超长时的显示方式。文本截断是按字截断。例如,英文以单词为最小单位进行截断,若需要以字母为单位进行截断,可在字母间添加零宽空格。 |
+| maxLines | number | 否 | 设置Label文本的最大行数。默认情况下,文本是自动折行的,如果指定此参数,则文本最多不会超过指定的行。如果有多余的文本,可以通过 textOverflow来指定截断方式。 |
+| minFontSize | number \| [ResourceStr](ts-types.md#resourcestr) | 否 | 设置Label文本最小显示字号。需配合maxFontSize以及maxLines或布局大小限制使用。 |
+| maxFontSize | number \| [ResourceStr](ts-types.md#resourcestr) | 否 | 设置Label文本最大显示字号。需配合minFontSize以及maxLines或布局大小限制使用。 |
+| heightAdaptivePolicy | [TextHeightAdaptivePolicy](ts-appendix-enums.md#textheightadaptivepolicy10) | 否 | 设置Label文本自适应高度的方式。 |
+| font | [Font](ts-types.md#font) | 否 | 设置Label文本字体样式。 |
## BottomTabBarStyle9+
底部页签和侧边页签样式。
-### constructor9+
+### constructor
-constructor(icon: string | Resource, text: string | Resource)
+constructor(icon: string | Resource, content: string | Resource)
BottomTabBarStyle的构造函数。
@@ -60,8 +116,20 @@ BottomTabBarStyle的构造函数。
| 参数名 | 参数类型 | 必填 | 参数描述 |
| -------- | -------- | -------- | -------- |
-| icon | string \| [Resource](ts-types.md#resource) | 是 | 页签内的图片内容。 |
-| text | string \| [Resource](ts-types.md#resource) | 是 | 页签内的文字内容。 |
+| icon | string \| [Resource](ts-types.md#resource) | 是 | 页签内的图片内容。从API version 10开始,icon类型为ResourceStr。 |
+| text | string \| [Resource](ts-types.md#resource) | 是 | 页签内的文字内容。从API version 10开始,text类型为ResourceStr。 |
+
+### of10+
+
+static of(icon: ResourceStr, text: ResourceStr)
+BottomTabBarStyle的静态构造函数。
+
+**参数:**
+
+| 参数名 | 参数类型 | 必填 | 参数描述 |
+| -------- | -------- | -------- | -------- |
+| icon | [ResourceStr](ts-types.md#resourcestr) | 是 | 页签内的图片内容。 |
+| text | [ResourceStr](ts-types.md#resourcestr) | 是 | 页签内的文字内容。 |
## 示例
diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-container-tabs.md b/zh-cn/application-dev/reference/arkui-ts/ts-container-tabs.md
index 2787e1f58ed4ff75df39d9ce7c16dd5cea6dcd17..243479e1a06bff94603c37d654262bacae83557a 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-container-tabs.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-container-tabs.md
@@ -44,6 +44,17 @@ Tabs(value?: {barPosition?: BarPosition, index?: number, controller?: [TabsContr
| barWidth | number \| Length8+ | TabBar的宽度值。 |
| barHeight | number \| Length8+ | TabBar的高度值。 |
| animationDuration | number | TabContent滑动动画时长。不设置时,点击切换页签无动画,滑动切换有动画;设置时,点击切换和滑动切换都有动画。
默认值:200 |
+| divider10+ | [DividerStyle](#dividerstyle10对象说明) \| null | 用于设置区分TabBar和TabContent的分割线样式设置分割线样式,默认不显示分割线。
DividerStyle: 分割线的样式;
null: 不显示分割线。 |
+| FadingEdge10+ | boolean | 设置页签超过容器宽度时是否渐隐消失
默认值:true |
+
+## DividerStyle10+对象说明
+
+| 名称 | 参数类型 | 必填 | 描述 |
+| -------- | -------- | -------- | -------- |
+| strokeWidth | [Length](ts-types.md#length) | 是 | 分割线的线宽。 |
+| color | [ResourceColor](ts-types.md#resourcecolor) | 否 | 分割线的颜色。
默认值:#33182431 |
+| startMargin | [Length](ts-types.md#length) | 否 | 分割线与侧边栏顶端的距离。
默认值:0.0vp |
+| endMargin | [Length](ts-types.md#length) | 否 | 分割线与侧边栏底端的距离。
默认值:0.0vp |
## BarMode枚举说明