This project fork qiankun framework to add customized functions
- add keepAlive options
when the micro application is deactivated, the DOM will not be destroyed, but will be hidden. the event will be suspended temporarily. when it is reactivated, the DOM will be re displayed and the event will be restored
import { start } from 'qiankun';
start({
keepAlive: true,
});
- v1.0.0
base on qiankun 2.7.0,add keepAlive options
refer to qiankun for more options