mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
12 lines
172 B
Vue
12 lines
172 B
Vue
<script setup lang="ts">
|
|
extendCompodiumMeta({
|
|
defaultProps: {
|
|
items: ['Option 1', 'Option 2', 'Option 3']
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<URadioGroup />
|
|
</template>
|