mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 13:32:54 +08:00
28 lines
700 B
Vue
28 lines
700 B
Vue
<template>
|
|
<ion-page>
|
|
<ion-header>
|
|
<ion-toolbar>
|
|
<ion-title>Tab 3</ion-title>
|
|
</ion-toolbar>
|
|
</ion-header>
|
|
<ion-content :fullscreen="true">
|
|
<ion-header collapse="condense">
|
|
<ion-toolbar>
|
|
<ion-title size="large">Tab 3</ion-title>
|
|
</ion-toolbar>
|
|
</ion-header>
|
|
|
|
<ExploreContainer name="Tab 3 page" />
|
|
</ion-content>
|
|
</ion-page>
|
|
</template>
|
|
|
|
<script>
|
|
import { IonPage, IonHeader, IonToolbar, IonTitle, IonContent } from '@ionic/vue';
|
|
import ExploreContainer from '@/components/ExploreContainer.vue';
|
|
|
|
export default {
|
|
components: { ExploreContainer, IonHeader, IonToolbar, IonTitle, IonContent, IonPage }
|
|
}
|
|
</script>
|