Files
ui/playground/compodium/examples/USelectExample.vue
Romain Hamel f941df1541 chore: up
2025-03-28 08:58:21 +01:00

13 lines
198 B
Vue

<script setup lang="ts">
extendCompodiumMeta({
defaultProps: {
defaultValue: 'Option 1',
items: ['Option 1', 'Option 2', 'Option 3']
}
})
</script>
<template>
<USelect />
</template>