mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
19 lines
312 B
Vue
19 lines
312 B
Vue
<script setup>
|
|
const options = [{
|
|
value: 'email',
|
|
label: 'Email'
|
|
}, {
|
|
value: 'sms',
|
|
label: 'Phone (SMS)'
|
|
}, {
|
|
value: 'push',
|
|
label: 'Push notification'
|
|
}]
|
|
|
|
const selected = ref('sms')
|
|
</script>
|
|
|
|
<template>
|
|
<URadioGroup v-model="selected" legend="Choose something" :options="options" />
|
|
</template>
|