pingcrm/resources/js/Pages/Dashboard/Index.vue

20 lines
523 B
Vue

<template>
<div>
<Head title="Dashboard" />
<h1 class="mb-8 text-3xl font-bold">Dashboard</h1>
<p class="mb-8 leading-normal">Hey there! Welcome to Ping CRM, a demo app designed to help illustrate how <a class="text-indigo-500 hover:text-orange-600 underline" href="https://inertiajs.com">Inertia.js</a> works.</p>
</div>
</template>
<script>
import { Head } from '@inertiajs/inertia-vue3'
import Layout from '@/Shared/Layout'
export default {
components: {
Head,
},
layout: Layout,
}
</script>