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