diff --git a/docs/plugin/uts-vue-component.md b/docs/plugin/uts-vue-component.md
index b451cf1e15eb1c18cfc64d69d9337f34e42c1ed7..979f824393fa8b25e50022f7fe5a65fdcdc89f00 100644
--- a/docs/plugin/uts-vue-component.md
+++ b/docs/plugin/uts-vue-component.md
@@ -60,7 +60,7 @@ HBuilder X 选中你的项目,项目根目录选中uni_modules目录,右键
构建标准模式组件后,HBuilder X 会自动创建components/native-button/native-button.uvue文件,在该文件编写代码添加 native-view 标签
-```ts
+```html
@@ -72,11 +72,33 @@ native-view 初始化会触发 @init 事件,此时创建NativeButton对象,n
[NativeButton](#实现nativebutton对象)是在utssdk目录构建的原生对象。NativeButton对象内部处理原生view与native-view绑定关联业务
-```ts
+::: preview
+
+> 组合式 API
+
+```html
+
+
+
+
+```
+
+> 选项式 API
+
+```html
-... ...
+
```
#### 组件声明方法
在 methods 节点中添加updateText方法,native-button组件使用者可调用该方法更新native-button文案。 [页面调用组件方法](https://doc.dcloud.net.cn/uni-app-x/vue/component.html#page-call-component-method)
+::: preview
+
+> 组合式 API
+
+```ts
+
+```
+
+> 选项式 API
+
```ts
methods: {
//对外函数
@@ -112,6 +153,29 @@ methods: {
native-button 声明props,例如native-button的文案信息text属性,按vue规范监听到text属性更新,通过NativeButton对象驱动更新原生view属性,在components/native-button/native-button.uvue编写如下代码,具体参考[vue组件Props规范](https://cn.vuejs.org/guide/components/props.html)
+::: preview
+
+> 组合式 API
+
+```html
+
+```
+
+> 选项式 API
+
```html
+```
+
+> 选项式 API
+
```html
@@ -159,6 +245,59 @@ native-button 声明事件,例如原生组件触发点击事件@buttonTap, Nat
native-button/components/native-button/native-button.uvue 最终代码如下:
+::: preview
+
+> 组合式 API
+
+``` html
+
+
+
+
+```
+
+> 选项式 API
+
```html
@@ -217,7 +356,7 @@ utssdk目录实现不同平台的原生NativeButton对象,构造参数获取Un
> Android
-```html
+```uts
import { Button } from "android.widget"
export class NativeButton {
@@ -260,7 +399,7 @@ export class NativeButton {
> iOS
-```html
+```uts
import { UIButton, UIControl } from "UIKit"
export class NativeButton {