vue學習---生命周期鈎子activated,deactivated
之前學習了基礎的生命周期鈎子(beforeCreate,created,beforeMonted,mounted.beforUpdate,update,beforDestroy,destroye ...
之前學習了基礎的生命周期鈎子(beforeCreate,created,beforeMonted,mounted.beforUpdate,update,beforDestroy,destroye ...
我們在做后台管理系統時,通常將數據請求掛載到created或mounted鈎子中,但這樣引發的問題是它只會被出發一次,如果不同菜單中數據關聯性較大,切換過程中未及時更新數據,容易引發一些問題,這種情況下,我們可以使用activated函數。 以下為created()/mounted ...