Index.vue 246 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 14 <template> <div> <h1 class="mb-8 font-bold text-3xl">Reports</h1> </div> </template> <script> import Layout from '@/Shared/Layout' export default { metaInfo: { title: 'Reports' }, layout: (h, page) => h(Layout, [page]), } </script>