Files
ui/playground/compodium/examples/UAlert/UAlertExampleAvatar.vue
2025-03-26 11:40:23 +01:00

15 lines
298 B
Vue

<script setup lang="ts">
extendCompodiumMeta({
combo: ['variant'],
defaultProps: {
avatar: { src: 'https://github.com/benjamincanac.png' },
title: 'Heads up!',
description: 'You can change the primary color in your app config.'
}
})
</script>
<template>
<UAlert />
</template>