From 331744567eb81157633418ee68faea97e7c2c5c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=9C=E5=BA=86=E6=B3=89?= Date: Fri, 2 Sep 2022 03:52:10 +0000 Subject: [PATCH] update docs/plugin/uts-plugin.md. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 杜庆泉 --- docs/plugin/uts-plugin.md | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/docs/plugin/uts-plugin.md b/docs/plugin/uts-plugin.md index c50bf8a59..fc84fdb3d 100644 --- a/docs/plugin/uts-plugin.md +++ b/docs/plugin/uts-plugin.md @@ -100,22 +100,22 @@ package.json的完整文档[详见](uni_modules.md#package.json)
 	
-uni_modules插件标识  
-  - utssdk
-  	+ app-android //Android平台目录
-  	  * index.uts
-  	  * config.json //Android原生配置
-  	+ app-ios //ios平台目录
-  	  * index.uts
-  	  * config.json //ios原生配置
-  	+ web //web平台目录
-	  * index.uts
-  	+ mp-xxx  // 其他平台,待实现
-  - common // 可跨端公用的uts代码。推荐,不强制
-  - static // 静态资源
-  - package.json
-  - index.d.ts  // 插件能力声明,非必需
-  - index.uts   // 插件能力实现
+┌─utssdk
+│	├─app-android //Android平台目录
+│	│ └─index.uts
+│	│ └─config.json //Android原生配置
+│	├─app-ios //ios平台目录
+│	│ └─index.uts
+│	│ └─config.json //ios原生配置
+│	├─web //web平台目录
+│	│ └─index.uts
+│	└─mp-xxx  // 其他平台,待实现
+├─common // 可跨端公用的uts代码。推荐,不强制
+├─static // 静态资源
+├─package.json
+├─index.d.ts  // 插件能力声明,非必需
+└─index.uts   // 插件能力实现
+
 
 
-- GitLab