``` inteface PropsType { loading :boolean } const { loading = false, } = defineProps<PropsType>(); ``` 