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

19 lines
295 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="Reports" />
2019-03-18 08:53:00 -03:00
<h1 class="mb-8 font-bold text-3xl">Reports</h1>
</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-12-18 15:49:19 -03:00
layout: Layout,
2019-03-18 08:53:00 -03:00
}
</script>