12 lines
249 B
Vue
12 lines
249 B
Vue
<script setup lang="ts">
|
|
import { onMounted } from "vue";
|
|
|
|
onMounted(() => {
|
|
console.log("ลักษณะโครงการ");
|
|
});
|
|
</script>
|
|
<template>
|
|
<div>ลักษณะโครงการ</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|