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