From a488056cf52474417f5ebd83753e82ca384a4586 Mon Sep 17 00:00:00 2001 From: lixu <461229187@qq.com> Date: Wed, 7 Sep 2022 15:50:09 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20nvue=20=E4=BB=85=20vue2=20=E4=B8=8D?= =?UTF-8?q?=E6=94=AF=E6=8C=81this.getOpenerEventChannel?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/api/router.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/router.md b/docs/api/router.md index a807361c3..78d473d03 100644 --- a/docs/api/router.md +++ b/docs/api/router.md @@ -96,7 +96,7 @@ onLoad: function (option) { * 页面跳转路径有层级限制,不能无限制跳转新页面 * 跳转到 tabBar 页面只能使用 switchTab 跳转 * 路由API的目标页面必须是在pages.json里注册的vue页面。如果想打开web url,在App平台可以使用 [plus.runtime.openURL](http://www.html5plus.org/doc/zh_cn/runtime.html#plus.runtime.openURL)或web-view组件;H5平台使用 window.open;小程序平台使用web-view组件(url需在小程序的联网白名单中)。在hello uni-app中有个组件ulink.vue已对多端进行封装,可参考。 -* APP-NVUE平台暂不支持以`this.getOpenerEventChannel()`方式获取`eventChannel`,请换用`this.$scope.eventChannel`来获取,具体方式请参考上述示例。 +* APP-NVUE平台 vue2 暂不支持以`this.getOpenerEventChannel()`方式获取`eventChannel`,请换用`this.$scope.eventChannel`来获取,具体方式请参考上述示例。 ### uni.redirectTo(OBJECT) -- GitLab