hrms-mgt/src/modules/18_command/components/Step/4_Attached.vue

16 lines
359 B
Vue
Raw Normal View History

<script setup lang="ts">
const isChangeData = defineModel<boolean>("isChangeData", { required: true });
const props = defineProps({
onCheckChangeData: { type: Function, required: true },
});
function onSubmit() {}
defineExpose({
onSubmit,
});
</script>
2024-09-09 17:26:30 +07:00
<template>
<div>คำสงและบญชแนบทาย</div>
</template>