mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
32 lines
648 B
Vue
32 lines
648 B
Vue
<script setup lang="ts">
|
|
const items = ref([
|
|
{
|
|
label: 'Backlog',
|
|
value: 'backlog',
|
|
icon: 'i-heroicons-question-mark-circle'
|
|
},
|
|
{
|
|
label: 'Todo',
|
|
value: 'todo',
|
|
icon: 'i-heroicons-plus-circle'
|
|
},
|
|
{
|
|
label: 'In Progress',
|
|
value: 'in_progress',
|
|
icon: 'i-heroicons-arrow-up-circle'
|
|
},
|
|
{
|
|
label: 'Done',
|
|
value: 'done',
|
|
icon: 'i-heroicons-check-circle'
|
|
}
|
|
])
|
|
const value = ref(items.value[0]?.value)
|
|
|
|
const icon = computed(() => items.value.find(item => item.value === value.value)?.icon)
|
|
</script>
|
|
|
|
<template>
|
|
<USelect v-model="value" :icon="icon" :items="items" class="w-48" />
|
|
</template>
|