1、通过Vue提供的getCurrentInstance获取组件实例; 2、为不需要保留状态的组件添加一个removeKeepAliveCache:true标识该组件不需要保留组件状态; 3、通过onDeactivated生命周期钩子函数删除保留的数据。 // about/index.jsximport{defineComponent,onDeactivated,getCurrentInstance}from"vue";exportdefaultdefineComponent({name:"A...
组件的插槽中可以传入一个函数,该函数会被自动运行,并传入父组件的参数。 同理也可以用在 element pl...
在vue3中TSX中使用keep-alive与transition