23 lines
503 B
Vue
23 lines
503 B
Vue
<template>
|
|
<IonPage>
|
|
<IonHeader>
|
|
<IonToolbar color="primary">
|
|
<IonButtons slot="start">
|
|
<IonMenuButton />
|
|
</IonButtons>
|
|
<IonTitle>Home</IonTitle>
|
|
</IonToolbar>
|
|
</IonHeader>
|
|
<IonContent class="ion-padding">
|
|
<h2>Welcome to OYS Borrow a Boat</h2>
|
|
</IonContent>
|
|
</IonPage>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import {
|
|
IonPage, IonHeader, IonToolbar, IonTitle, IonContent,
|
|
IonButtons, IonMenuButton,
|
|
} from '@ionic/vue'
|
|
</script>
|