22 lines
681 B
Vue
22 lines
681 B
Vue
<!-- =============================== -->
|
|
<!-- page:main page จัดการตำแหน่ง -->
|
|
<!-- =============================== -->
|
|
<template>
|
|
<div class="toptitle text-dark col-12 row items-center">จัดการตำแหน่ง</div>
|
|
<q-card flat bordered class="col-12 q-mt-sm q-pt-sm">
|
|
<div>
|
|
<AddMappingPosition class="q-pa-none" />
|
|
</div>
|
|
</q-card>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { defineAsyncComponent } from "@vue/runtime-core";
|
|
import { ref } from "vue";
|
|
|
|
const AddMappingPosition = defineAsyncComponent(
|
|
() => import("@/modules/02_organizational/components/AddMappingPositions.vue")
|
|
);
|
|
</script>
|
|
|
|
<style></style>
|