mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 13:01:01 +08:00
17 lines
318 B
Vue
17 lines
318 B
Vue
<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>
|