Items & Description
Use the items prop as an array of strings or numbers.
<script>
import { RadioGroup } from 'uisv';
const items = ['Svelte', 'Vite', 'UISV']
let value = $state('Svelte')
</script>
<Alert
bind:value
{items}
/>