From 4d41aba65b499fc5f858d4fc881aa10d6422a893 Mon Sep 17 00:00:00 2001 From: shutao Date: Tue, 8 Oct 2024 19:41:42 +0800 Subject: [PATCH] update uts-vue-component.md --- docs/plugin/uts-vue-component.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/docs/plugin/uts-vue-component.md b/docs/plugin/uts-vue-component.md index d085665b..35ff5ffa 100644 --- a/docs/plugin/uts-vue-component.md +++ b/docs/plugin/uts-vue-component.md @@ -1,4 +1,4 @@ -## uts组件-标准模式 +## UTS插件-标准模式组件 使用vue组件开发规范,通过插件封装原生平台view提供给native-view组件,实现组件特定功能及UI展示。 @@ -10,7 +10,7 @@ + 了解 [vue组件](https://uniapp.dcloud.net.cn/tutorial/vue3-components.html) + 了解 [native-view组件](https://doc.dcloud.net.cn/uni-app-x/component/native-view.html) -## 标准模式的uts组件目录结构 +## UTS插件-标准模式组件目录结构
 
@@ -40,25 +40,25 @@
 
 
-如上所示,标准模式的uts组件目录结构与UTS插件基本相同,差别在于components目录,vue组件代码存放components目录下。 +如上所示,UTS插件-标准模式组件目录结构与UTS插件基本相同,差别在于components目录,vue组件代码存放components目录下。 其他目录文件详情可参考[UTS插件文档](https://doc.dcloud.net.cn/uni-app-x/plugin/uts-plugin.html#%E6%8F%92%E4%BB%B6%E7%9A%84%E7%9B%AE%E5%BD%95%E7%BB%93%E6%9E%84) -## 开发标准模式的uts组件 +## 开发UTS插件-标准模式组件 -### 构建标准模式的uts组件 +### 构建标准模式组件 -HBuilder X 选中你的项目,项目根目录选中uni_modules目录,右键选择新建uni_modules插件,弹窗后分类选择 “uts组件-标准模式”,填写组件名称,以下均已 native-button 为例 +HBuilder X 选中你的项目,项目根目录选中uni_modules目录,右键选择新建uni_modules插件,弹窗后分类选择 “UTS插件-标准模式组件”,填写组件名称,以下均已 native-button 为例 //截图 -创建完毕 HBuilder X 会自动构建模版文件,参考:`标准模式的uts组件目录结构` +创建完毕 HBuilder X 会自动构建模版文件,参考:`UTS插件-标准模式组件目录结构` -### 标准模式的uts组件代码编写 +### UTS插件-标准模式组件代码编写 #### 添加 native-view -构建uts组件后,HBuilder X 会自动创建components/native-button/native-button.uvue文件,在该文件编写代码添加 native-view 标签 +构建标准模式组件后,HBuilder X 会自动创建components/native-button/native-button.uvue文件,在该文件编写代码添加 native-view 标签 ```ts