Files
onboard/resources/js/Pages/Report/Index.vue

19 lines
402 B
Vue

<script setup>
import AppLayout from "../../Layouts/AppLayout.vue";
import ReportForm from "./Components/ReportForm.vue";
import {useReportStore} from "../../Stores/report.js";
import {onMounted} from "vue";
const reportStore = useReportStore()
onMounted(async () => {
await reportStore.getReportInfo()
})
</script>
<template>
<AppLayout>
<ReportForm />
</AppLayout>
</template>