comment code retirement

This commit is contained in:
AnandaTon 2023-11-17 14:21:53 +07:00
parent 45fc4848ac
commit 45ef9649e1
15 changed files with 295 additions and 64 deletions

View file

@ -1,4 +1,5 @@
<script setup lang="ts">
/** props*/
const props = defineProps({
title: String,
close: {
@ -6,6 +7,10 @@ const props = defineProps({
default: () => console.log("not function"),
},
});
/**
* งก close
*/
const close = async () => {
props.close();
};