feat: use defineOptions for Loadings.vue
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Dominik Pschenitschni 2024-06-15 16:14:50 +02:00 committed by konrad
parent 4bd9c79912
commit ff2644d1c5

View File

@ -5,18 +5,12 @@
/>
</template>
<script lang="ts">
export default {
inheritAttrs: true,
}
</script>
<script lang="ts" setup>
const {
variant = 'default',
} = defineProps<{
withDefaults(defineProps<{
variant?: 'default' | 'small'
}>()
}>(), {
variant: 'default',
})
</script>
<style scoped lang="scss">