2023-07-26 15:37:34 +07:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { ref, defineAsyncComponent } from "vue";
|
|
|
|
|
|
|
|
|
|
const FormReport = defineAsyncComponent(
|
|
|
|
|
() => import("@/modules/05_placement/components/probation/FormEvaluation/FormReport.vue")
|
|
|
|
|
)
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
2023-08-24 16:55:24 +07:00
|
|
|
<div class="col-12 q-ma-sm">
|
|
|
|
|
<FormReport />
|
2023-07-28 10:08:17 +07:00
|
|
|
</div>
|
2023-07-26 15:37:34 +07:00
|
|
|
</template>
|