fix. 개발 도구 적용. (typescript, prettier, es-lint)

This commit is contained in:
clkim
2025-09-16 13:01:17 +09:00
parent be15192e59
commit 2c07ff4fce
65 changed files with 6849 additions and 2548 deletions

View File

@@ -1,15 +1,15 @@
<script setup lang="ts">
interface Props {
size?: number | string;
color?: string;
className?: string;
size?: number | string
color?: string
className?: string
}
withDefaults(defineProps<Props>(), {
size: 16,
color: "#B2B2B2",
className: "",
});
color: '#B2B2B2',
className: '',
})
</script>
<template>