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

20 lines
523 B
Vue
Raw Normal View History

2019-03-18 08:53:00 -03:00
<template>
<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>
</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,
},
layout: Layout,
2019-03-18 08:53:00 -03:00
}
</script>