16 lines
234 B
Vue
16 lines
234 B
Vue
<script setup>
|
|
import MainLayout from "@/Layouts/MainLayout.vue";
|
|
import { Head } from '@inertiajs/vue3';
|
|
defineOptions({
|
|
layout: MainLayout
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<Head title="Home" />
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|