From 08aa7b09cb447ffc4d621871dd775891b039048c Mon Sep 17 00:00:00 2001 From: harrywan Date: Tue, 25 May 2021 16:25:44 +0800 Subject: [PATCH 1/3] =?UTF-8?q?fix(plugin-qiankun):=20=E5=BD=93=E5=AD=90?= =?UTF-8?q?=E5=BA=94=E7=94=A8=E5=8D=95=E7=8B=AC=E8=BF=90=E8=A1=8C=E6=97=B6?= =?UTF-8?q?,=E4=B8=8D=E6=89=A7=E8=A1=8Cqiankun=E9=92=A9=E5=AD=90=E5=92=8C?= =?UTF-8?q?=E4=B8=80=E4=BA=9Bqiankun=E7=9A=84=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../examples/app1/src/app.js | 19 ++++++++++ .../examples/app1/src/pages/app1/test.vue | 4 +- .../examples/main/src/pages/index.vue | 2 +- .../src/micro/runtime/lifecycles.tpl | 37 ++++++++++--------- 4 files changed, 41 insertions(+), 21 deletions(-) diff --git a/packages/fes-plugin-qiankun/examples/app1/src/app.js b/packages/fes-plugin-qiankun/examples/app1/src/app.js index 5d609f81..02d3cb29 100644 --- a/packages/fes-plugin-qiankun/examples/app1/src/app.js +++ b/packages/fes-plugin-qiankun/examples/app1/src/app.js @@ -10,3 +10,22 @@ export const beforeRender = { }); } }; + +export const qiankun = { + // 应用加载之前 + async bootstrap(props) { + console.log('app1 bootstrap', props); + }, + // 应用 render 之前触发 + async mount(props) { + console.log('app1 mount', props); + }, + // 当 props 更新时触发 + async update(props) { + console.log('app1 update', props); + }, + // 应用卸载之后触发 + async unmount(props) { + console.log('app1 unmount', props); + } +}; diff --git a/packages/fes-plugin-qiankun/examples/app1/src/pages/app1/test.vue b/packages/fes-plugin-qiankun/examples/app1/src/pages/app1/test.vue index c77c3a19..f20e10fd 100644 --- a/packages/fes-plugin-qiankun/examples/app1/src/pages/app1/test.vue +++ b/packages/fes-plugin-qiankun/examples/app1/src/pages/app1/test.vue @@ -5,8 +5,8 @@ { - "name": "index", - "title": "home" + "name": "test", + "title": "test" }