From b47b64a8d66beb1e0e74cbdb52149445ef2d45df Mon Sep 17 00:00:00 2001 From: DCloud_LXH <283700113@qq.com> Date: Wed, 3 Nov 2021 15:35:23 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E5=B0=8F=E7=A8=8B=E5=BA=8F=E5=AF=BC?= =?UTF-8?q?=E5=87=BA=E5=88=B0=E6=8F=92=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/component/mp-weixin-plugin.md | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/docs/component/mp-weixin-plugin.md b/docs/component/mp-weixin-plugin.md index fee136141..56eb8f3b3 100644 --- a/docs/component/mp-weixin-plugin.md +++ b/docs/component/mp-weixin-plugin.md @@ -20,7 +20,8 @@ "plugins": { "myPlugin": { "version": "1.0.0", - "provider": "wxidxxxxxxxxxxxxxxxx" + "provider": "wxidxxxxxxxxxxxxxxxx", + "export": "index.js" } } } @@ -30,7 +31,8 @@ "plugins": { "myPlugin": { "version": "*", - "provider": "2019235609092837" + "provider": "2019235609092837", + "export": "index.js" } } } @@ -45,11 +47,17 @@ } ``` +**注意** + +- `HBuilder X 3.2.13+` 支持 `export` 字段,即小程序导出到插件。目前仅 微信小程序 和 支付宝小程序 支持 + #### 在页面中使用 -在页面内使用插件内包含的组件需要在`pages.json`内对应页面的`style`节点下配置对应平台的`usingComponents`或`usingSwanComponents`,示例如下。 +在页面内使用插件内包含的组件需要在`pages.json`内对应页面的`style`节点下配置对应平台的`usingComponents`或`usingSwanComponents`,示例如下: + +以`"hello-component": "plugin://myPlugin/hello-component"`为例,`key`(冒号前的`hello-component`)为在页面内使用的组件名称。 -以`"hello-component": "plugin://myPlugin/hello-component"`为例,`key`(冒号前的`hello-component`)为在页面内使用的组件名称。`value`分为三段,`plugin`为协议(在百度小程序内为`dynamicLib`),`myPlugin`为插件名称即引入插件时的名称,`hello-component`为插件暴露的组件名称。 +`value`分为三段,`plugin`为协议(在百度小程序内为`dynamicLib`),`myPlugin`为插件名称即引入插件时的名称,`hello-component`为插件暴露的组件名称。 ```json // 微信小程序 -- GitLab