2019-03-18 08:53:00 -03:00
|
|
|
<template>
|
2019-09-28 08:30:44 -03:00
|
|
|
<div>
|
2021-12-08 12:15:39 -03:00
|
|
|
<Head title="Dashboard" />
|
2021-12-08 14:52:56 -03:00
|
|
|
<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>
|
2019-09-28 08:30:44 -03:00
|
|
|
</div>
|
2019-03-18 08:53:00 -03:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2021-12-08 12:15:39 -03:00
|
|
|
import { Head } from '@inertiajs/inertia-vue3'
|
2019-03-18 08:53:00 -03:00
|
|
|
import Layout from '@/Shared/Layout'
|
|
|
|
|
|
|
|
export default {
|
2021-12-08 12:15:39 -03:00
|
|
|
components: {
|
|
|
|
Head,
|
|
|
|
},
|
2019-09-28 08:30:44 -03:00
|
|
|
layout: Layout,
|
2019-03-18 08:53:00 -03:00
|
|
|
}
|
|
|
|
</script>
|