feat: add switch component

This commit is contained in:
Methapon Metanipat 2024-10-28 10:04:57 +07:00
parent 65793adb1d
commit aa0c77f480

View file

@ -0,0 +1,9 @@
<script setup lang="ts">
defineProps<{
value: string;
}>();
</script>
<template>
<slot :name="value" />
</template>