mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-15 17:42:15 +08:00
feat(vue): extend useIonRouter hook for programmatic navigation with animation control (#23499)
resolves #23450
This commit is contained in:
@ -2,6 +2,12 @@ import { addIcons } from 'ionicons';
|
||||
import { arrowBackSharp, caretBackSharp, chevronBack, chevronDown, chevronForward, close, closeCircle, closeSharp, menuOutline, menuSharp, reorderThreeOutline, reorderTwoSharp, searchOutline, searchSharp } from 'ionicons/icons';
|
||||
|
||||
export * from './proxies';
|
||||
|
||||
export { UseBackButtonResult, useBackButton } from './hooks/back-button';
|
||||
export { UseKeyboardResult, useKeyboard } from './hooks/keyboard';
|
||||
export { onIonViewWillEnter, onIonViewDidEnter, onIonViewWillLeave, onIonViewDidLeave } from './hooks/lifecycle';
|
||||
export { UseIonRouterResult, useIonRouter } from './hooks/router';
|
||||
|
||||
export { IonicVue } from './ionic-vue';
|
||||
|
||||
export { IonBackButton } from './components/IonBackButton';
|
||||
@ -18,18 +24,6 @@ export { IonModal } from './components/IonModal';
|
||||
|
||||
export * from './components/Overlays';
|
||||
|
||||
export {
|
||||
IonKeyboardRef,
|
||||
IonRouter,
|
||||
useBackButton,
|
||||
useIonRouter,
|
||||
useKeyboard,
|
||||
onIonViewWillEnter,
|
||||
onIonViewDidEnter,
|
||||
onIonViewWillLeave,
|
||||
onIonViewDidLeave
|
||||
} from './hooks';
|
||||
|
||||
export {
|
||||
modalController,
|
||||
popoverController,
|
||||
|
Reference in New Issue
Block a user