```
运行测试功能正常,
至此我们完成了 Android原生插件中module 到 UTS插件的迁移工作
## component 迁移思路
component 插件的迁移思路和module插件不同。
因为component存在更多的规范约束,我们只能选择将其彻底翻译为[UTS页面组件](https://doc.dcloud.net.cn/uni-app-x/plugin/uts-component.html)
## component 迁移实践
以 `uniplugin_component` 为例:
新建一个UTS页面组件,名称为:`uts-test-text`
![component_1](https://web-ext-storage.dcloud.net.cn/doc/uts/convert_android/component_1.png)
+ 修改 name字段为 `uts-test-text`
+ `emit` 添加 `ontel` 事件,特别注意: 事件名称必须要修改为全小写
+ 声明 `tel` 属性,并在 `watch` 方法中监听属性变化
+ 声明并对外暴露 `clearTel`方法
+ 迁移 布局创建文件至 `NVLoad` 方法
这里修改后的 `index.uvue`
```vue