14 lines
294 B
Vue
14 lines
294 B
Vue
<script setup>
|
|
import { Head } from "@inertiajs/vue3";
|
|
|
|
const props = defineProps(["user"]);
|
|
</script>
|
|
|
|
<template>
|
|
<Head title="User Profile" />
|
|
|
|
<h2 class="font-semibold text-xl text-gray-800 leading-tight">Profile</h2>
|
|
|
|
<div class="py-12">Hello, {{ user.name }}</div>
|
|
</template>
|