mirror of
https://github.com/Floriansylvain/musee-illusion-mobile.git
synced 2026-08-19 11:43:17 +02:00
24 lines
606 B
Vue
24 lines
606 B
Vue
<template>
|
|
<ion-page>
|
|
<ion-header>
|
|
<ion-toolbar>
|
|
<ion-title>Tab 1</ion-title>
|
|
</ion-toolbar>
|
|
</ion-header>
|
|
<ion-content :fullscreen="true">
|
|
<ion-header collapse="condense">
|
|
<ion-toolbar>
|
|
<ion-title size="large">Tab 1</ion-title>
|
|
</ion-toolbar>
|
|
</ion-header>
|
|
|
|
<ExploreContainer name="Tab 1 page" />
|
|
</ion-content>
|
|
</ion-page>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { IonPage, IonHeader, IonToolbar, IonTitle, IonContent } from '@ionic/vue';
|
|
import ExploreContainer from '@/components/ExploreContainer.vue';
|
|
</script>
|