2023-07-26 15:37:34 +07:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { ref, defineAsyncComponent } from "vue";
|
2023-08-21 12:33:44 +07:00
|
|
|
// const tab = ref<string>("save1");
|
|
|
|
|
// const changeTab = (tabVal: string) => {
|
|
|
|
|
// tab.value = tabVal
|
|
|
|
|
// }
|
2023-07-26 15:37:34 +07:00
|
|
|
|
2023-08-21 12:33:44 +07:00
|
|
|
// const Header = defineAsyncComponent(
|
|
|
|
|
// () => import("@/modules/05_placement/components/probation/FormEvaluation/Header.vue")
|
|
|
|
|
// );
|
2023-07-26 15:37:34 +07:00
|
|
|
const FormReport = defineAsyncComponent(
|
|
|
|
|
() => import("@/modules/05_placement/components/probation/FormEvaluation/FormReport.vue")
|
|
|
|
|
)
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
2023-07-28 10:08:17 +07:00
|
|
|
<div class="col-12 q-ma-lg">
|
2023-07-26 15:37:34 +07:00
|
|
|
<FormReport />
|
2023-07-28 10:08:17 +07:00
|
|
|
</div>
|
2023-07-26 15:37:34 +07:00
|
|
|
</template>
|