From 68168018a764d9309a6626f46659cdd0e93aa5a0 Mon Sep 17 00:00:00 2001 From: winixt Date: Fri, 29 Nov 2024 18:35:52 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=B7=BB=E5=8A=A0=20props=20=E5=A3=B0?= =?UTF-8?q?=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/runtime/MicroAppWithMemoHistory.jsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/fes-plugin-qiankun/src/main/runtime/MicroAppWithMemoHistory.jsx b/packages/fes-plugin-qiankun/src/main/runtime/MicroAppWithMemoHistory.jsx index 2e9e200e..60dd9033 100644 --- a/packages/fes-plugin-qiankun/src/main/runtime/MicroAppWithMemoHistory.jsx +++ b/packages/fes-plugin-qiankun/src/main/runtime/MicroAppWithMemoHistory.jsx @@ -1,5 +1,5 @@ -import { defineComponent, watch, onUnmounted } from 'vue'; -// eslint-disable-next-line import/extensions +import { defineComponent, onUnmounted, watch } from 'vue'; + import { MicroApp } from './MicroApp'; export const MicroAppWithMemoHistory = defineComponent({ @@ -11,6 +11,7 @@ export const MicroAppWithMemoHistory = defineComponent({ type: String, required: true, }, + entry: String, cacheName: String, settings: Object, props: Object,