hrms-mgt/src/modules/18_command/views/detail.vue

12 lines
170 B
Vue
Raw Normal View History

2024-09-09 17:26:30 +07:00
<script setup lang="ts">
import { onMounted } from "vue";
onMounted(() => {
console.log("mounted");
});
</script>
<template>detail</template>
<style scoped></style>