hrms-mgt/src/modules/09_leave/views/WorkingMain.vue

46 lines
1.1 KiB
Vue
Raw Normal View History

2023-10-06 13:32:54 +07:00
<script setup lang="ts">
2023-12-15 09:58:02 +07:00
import { ref } from "vue";
/** import Components */
import Tab1 from "@/modules/09_leave/components/1_Work/Tab1.vue";
import Tab2 from "@/modules/09_leave/components/1_Work/Tab2.vue";
const tab = ref("1");
2023-10-06 13:32:54 +07:00
</script>
<template>
<div class="toptitle text-dark col-12 row items-center">
รายการลงเวลาปฏงาน
</div>
<div>
<q-card bordered flat>
<q-tabs
v-model="tab"
dense
align="left"
inline-label
class="rounded-borders"
indicator-color="primary"
active-bg-color="teal-1"
active-class="text-primary"
>
<q-tab name="1" label="รายการลงเวลาที่ประมวลผลแล้ว" />
<q-tab name="2" label="รายการลงเวลา" />
</q-tabs>
<q-separator />
2023-12-15 09:58:02 +07:00
<q-tab-panels v-model="tab" animated>
<q-tab-panel name="1">
<Tab1 />
</q-tab-panel>
<q-tab-panel name="2">
<Tab2 />
</q-tab-panel>
</q-tab-panels>
</q-card>
2023-10-06 13:32:54 +07:00
</div>
</template>
<style scoped></style>