update structure ทดลองงาน

This commit is contained in:
Warunee Tamkoo 2023-07-26 15:37:34 +07:00
parent 8c6bb382c0
commit afc9be8ab8
14 changed files with 2743 additions and 28 deletions

View file

@ -0,0 +1,29 @@
<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 FormEvaluate = defineAsyncComponent(
() => import("@/modules/05_placement/components/probation/FormEvaluation/FormEvaluate.vue")
)
</script>
<template>
<Header :change-tab="changeTab" />
<q-page-container>
<q-tab-panels v-model="tab" animated>
<q-tab-panel name="save1">
<FormEvaluate />
</q-tab-panel>
<q-tab-panel name="save2">
<FormEvaluate />
</q-tab-panel>
</q-tab-panels>
</q-page-container>
</template>