mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
16 lines
331 B
Vue
16 lines
331 B
Vue
<script setup lang="ts">
|
|
const items = ref(['Backlog', 'Todo', 'In Progress', 'Done'])
|
|
const value = ref('Backlog')
|
|
</script>
|
|
|
|
<template>
|
|
<USelect
|
|
v-model="value"
|
|
:items="items"
|
|
:ui="{
|
|
trailingIcon: 'group-data-[state=open]:rotate-180 transition-transform duration-200'
|
|
}"
|
|
class="w-48"
|
|
/>
|
|
</template>
|