mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-16 10:01:59 +08:00
test(vue): add multi-version testing (#25785)
This commit is contained in:
20
packages/vue/test/base/src/App.vue
Normal file
20
packages/vue/test/base/src/App.vue
Normal file
@ -0,0 +1,20 @@
|
||||
<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>
|
Reference in New Issue
Block a user