mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-16 01:52:19 +08:00
21 lines
371 B
Vue
21 lines
371 B
Vue
<template>
|
|
<ion-app>
|
|
<ion-router-outlet />
|
|
</ion-app>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { IonApp, IonRouterOutlet, useIonRouter } from '@ionic/vue';
|
|
import { defineComponent } from 'vue';
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
IonApp,
|
|
IonRouterOutlet
|
|
},
|
|
setup() {
|
|
(window as any).debugIonRouter = useIonRouter();
|
|
}
|
|
});
|
|
</script>
|