hrms-mgt/src/modules/05_placement/components/probation/FormEvaluation/Template3.vue
waruneeta 286236dc6c ทดลองงาน
แก้ไขฟอร์มรายงานการประเมินผล
2023-07-28 10:08:17 +07:00

20 lines
No EOL
531 B
Vue

<script setup lang="ts">
import { ref, defineAsyncComponent } from "vue";
const tab = ref<string>("save1");
const changeTab = (tabVal: string) => {
tab.value = tabVal
}
const Header = defineAsyncComponent(
() => import("@/modules/05_placement/components/probation/FormEvaluation/Header.vue")
);
const FormReport = defineAsyncComponent(
() => import("@/modules/05_placement/components/probation/FormEvaluation/FormReport.vue")
)
</script>
<template>
<div class="col-12 q-ma-lg">
<FormReport />
</div>
</template>