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

15 lines
246 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">Reports</h1>
</div>
2019-03-18 08:53:00 -03:00
</template>
<script>
import Layout from '@/Shared/Layout'
export default {
metaInfo: { title: 'Reports' },
layout: (h, page) => h(Layout, [page]),
2019-03-18 08:53:00 -03:00
}
</script>