🎨 Simplify props definition formatting in ProfessorPokeball component

This commit is contained in:
2026-01-28 05:07:07 +00:00
parent 75093f1daa
commit e74db72355

View File

@@ -19,18 +19,15 @@
</template>
<script setup>
const props = withDefaults(
defineProps<{
const props = withDefaults(defineProps<{
size?: string;
color?: string;
animate?: boolean;
}>(),
{
}>(), {
size: '100px',
color: '#ebebeb',
animate: false
}
);
});
defineOptions({
inheritAttrs: false