feat: Added type

This commit is contained in:
Ilya Artamonov
2022-11-20 21:08:44 +03:00
parent 730393a66c
commit bbb3f1f90c

View File

@@ -43,7 +43,7 @@ const props = defineProps({
default: 0,
},
size: {
type: String, // 'sm' | 'md' | 'lg' | 'xl'
type: String as PropType<ProgressSize>,
default: 'md',
},
})