mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
16 lines
367 B
Vue
16 lines
367 B
Vue
<script setup lang="ts">
|
|
const methods = [
|
|
{ value: 'email', label: 'Email' },
|
|
{ value: 'sms', label: 'Phone (SMS)' },
|
|
{ value: 'push', label: 'Push notification' }
|
|
]
|
|
|
|
const selected = ref('sms')
|
|
</script>
|
|
|
|
<template>
|
|
<div class="space-y-1">
|
|
<URadio v-for="method of methods" :key="method.value" v-model="selected" v-bind="method" />
|
|
</div>
|
|
</template>
|