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

20 lines
631 B
Vue
Raw Normal View History

2019-03-18 08:53:00 -03:00
<template>
<div>
2019-03-18 08:53:00 -03:00
<h1 class="mb-8 font-bold text-3xl">Dashboard</h1>
2020-01-09 00:16:10 -03:00
<p class="mb-12 leading-normal">Hey there! Welcome to Ping CRM, a demo app designed to help illustrate how <a class="text-indigo-500 underline hover:text-orange-600" href="https://github.com/inertiajs">Inertia.js</a> works.</p>
2019-04-02 14:11:24 -03:00
<div>
2019-03-18 08:53:00 -03:00
<inertia-link class="btn-indigo" href="/500">500 error</inertia-link>
<inertia-link class="btn-indigo" href="/404">404 error</inertia-link>
</div>
</div>
2019-03-18 08:53:00 -03:00
</template>
<script>
import Layout from '@/Shared/Layout'
export default {
metaInfo: { title: 'Dashboard' },
layout: Layout,
2019-03-18 08:53:00 -03:00
}
</script>