| 12345678910111213141516171819202122 |
- <template>
- <ion-page>
- <ion-header>
- <ion-toolbar>
- <ion-buttons slot="start">
- <ion-back-button></ion-back-button>
- </ion-buttons>
- <ion-title>Tab 5</ion-title>
- </ion-toolbar>
- </ion-header>
- <ion-content :fullscreen="true">
- <ExploreContainer name="Tab 5 page" />
- </ion-content>
- </ion-page>
- </template>
- <script setup lang="ts">
- import { IonPage, IonHeader, IonToolbar, IonTitle, IonButton, IonContent, IonBackButton, IonButtons } from '@ionic/vue';
- import ExploreContainer from '@/components/ExploreContainer.vue';
- </script>
|