mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
21 lines
543 B
Vue
21 lines
543 B
Vue
<script setup lang="ts">
|
|
const options = [
|
|
{ value: 'email', label: 'Email', icon: 'i-heroicons-at-symbol' },
|
|
{ value: 'sms', label: 'Phone (SMS)', icon: 'i-heroicons-phone' },
|
|
{ value: 'push', label: 'Push notification', icon: 'i-heroicons-bell' }
|
|
]
|
|
|
|
const selected = ref('sms')
|
|
</script>
|
|
|
|
<template>
|
|
<URadioGroup v-model="selected" :options="options">
|
|
<template #label="{ option }">
|
|
<p class="italic">
|
|
<UIcon :name="option.icon" />
|
|
{{ option.label }}
|
|
</p>
|
|
</template>
|
|
</URadioGroup>
|
|
</template>
|