feat: also allow other type (num or enum)

This commit is contained in:
Methapon Metanipat 2024-10-28 10:17:39 +07:00
parent 55234cd3c9
commit 8ea21b1795

View file

@ -1,6 +1,6 @@
<script setup lang="ts"> <script setup lang="ts">
defineProps<{ defineProps<{
value: string; value: any;
}>(); }>();
</script> </script>