test(vue): add multi-version testing (#25785)

This commit is contained in:
Liam DeBeasi
2022-08-23 15:05:34 -05:00
committed by GitHub
parent 037d579b2a
commit 65af865db7
83 changed files with 174 additions and 28 deletions

View File

@ -0,0 +1,16 @@
<template>
<ion-nav :root="NavRoot"></ion-nav>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import { IonNav } from '@ionic/vue';
import NavRoot from '@/components/NavRoot.vue';
export default defineComponent({
components: { IonNav },
setup() {
return { NavRoot }
}
});
</script>