20 lines
No EOL
552 B
Vue
20 lines
No EOL
552 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> |