Utility Functions
Ionic Vue ships with several utility functions that you can use in your application to make certain tasks easier such as managing the on-screen keyboard and the hardware back button.
▸ useIonRouter(): UseIonRouterResult
Returns the Ionic router instance, containing API methods for navigating, customizing page transitions and routing context for native features. This function can be used in combination with the useRouter
from Vue.
Customizing Page Transitions
import { IonPage, useIonRouter } from '@ionic/vue';
import { defineComponent } from 'vue';
import { customAnimation } from '@/animations/customAnimation';
export default defineComponent({
components: { IonPage },
setup() {
const router = useIonRouter();
const push = () => {
router.push('/page2', customAnimation);
};
const back = () => {
router.back(customAnimation);
};
return { push, back };
},
});
Hardware back button on Android
You may want to know if you are at the root page of the application when a user presses the hardware back button on Android.
import { useIonRouter } from '@ionic/vue';
...
export default {
setup() {
const ionRouter = useIonRouter();
if (ionRouter.canGoBack()) {
}
}
}
For additional APIs with Vue routing, please refer to the Vue Router documentation.
import { AnimationBuilder } from '@ionic/vue';
import { RouteLocationRaw } from 'vue-router';
interface UseIonRouterResult {
canGoBack: (deep?: number) => boolean;
push: (location: RouteLocationRaw, routerAnimation?: AnimationBuilder) => void;
replace: (location: RouteLocationRaw, routerAnimation?: AnimationBuilder) => void;
back: (routerAnimation?: AnimationBuilder) => void;
forward: (routerAnimation?: AnimationBuilder) => void;
navigate: (
location: string | Location,
routerDirection?: 'forward' | 'back' | 'root' | 'none',
routerAction?: 'push' | 'pop' | 'replace',
routerAnimation?: AnimationBuilder
) => void;
}
useIonRouter(): UseIonRouterResult;
The push
method is the equivalent of calling ionRouter.navigate(location, 'forward', 'push', animation)
.
The replace
method is the equivalent of calling ionRouter.navigate(location, 'root', 'replace', animation)
.
See the Vue Navigation Documentation for more usage examples.
The useBackButton
function can be used to register a callback function to fire whenever the hardware back button on Android is pressed. Additionally it accepts a priority parameter, allowing developers to customize which handler fires first if multiple handlers are registered.
import { useBackButton } from '@ionic/vue';
...
useBackButton(10, () => {
console.log('Hardware Back Button was called!');
});
type Handler = (processNextHandler: () => void) => Promise<any> | void | null;
interface UseBackButtonResult {
unregister: () => void;
}
useBackButton(priority: number, handler: Handler): UseBackButtonResult;
See the Hardware Back Button Documentation for more information and usage examples.
The useKeyboard
function returns an object that contains the state of the on-screen keyboard. This object provides information such as whether or not the on-screen keyboard is presented and what the height of the keyboard is in pixels. This information is provided in a Vue ref
so it will be reactive in your application.
import { watch } from 'vue';
import { useKeyboard } from '@ionic/vue';
const { isOpen, keyboardHeight } = useKeyboard();
watch(keyboardHeight, () => {
console.log(`Keyboard height is ${keyboardHeight.value}px`);
});
interface UseKeyboardResult {
isOpen: Ref<boolean>;
keyboardHeight: Ref<number>;
unregister: () => void
}
useKeyboard(): UseKeyboardResult;
See the Keyboard Documentation for more information and usage examples.
Ionic Vue provides several lifecycle hooks for the setup()
function to tap into the Ionic Framework page lifecycle.
import { IonPage, onIonViewWillEnter, onIonViewDidEnter, onIonViewWillLeave, onIonViewDidLeave } from '@ionic/vue';
import { defineComponent } from 'vue';
export default defineComponent({
components: { IonPage },
setup() {
onIonViewDidEnter(() => {
console.log('Page did enter');
});
onIonViewDidLeave(() => {
console.log('Page did leave');
});
onIonViewWillEnter(() => {
console.log('Page will enter');
});
onIonViewWillLeave(() => {
console.log('Page will leave');
});
},
});
Pages in your app need to be using the IonPage
component in order for lifecycle methods and hooks to fire properly.
See the Vue Lifecycle Documentation for more information and usage examples.