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

15 lines
268 B
Vue

<script setup lang="ts">
extendCompodiumMeta({
combo: ['variant'],
defaultProps: {
icon: 'i-lucide-terminal',
title: 'Heads up!',
description: 'You can change the primary color in your app config.'
}
})
</script>
<template>
<UAlert />
</template>