🎨 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> </template>
<script setup> <script setup>
const props = withDefaults( const props = withDefaults(defineProps<{
defineProps<{ size?: string;
size?: string; color?: string;
color?: string; animate?: boolean;
animate?: boolean; }>(), {
}>(), size: '100px',
{ color: '#ebebeb',
size: '100px', animate: false
color: '#ebebeb', });
animate: false
}
);
defineOptions({ defineOptions({
inheritAttrs: false inheritAttrs: false