mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
15 lines
287 B
Vue
15 lines
287 B
Vue
<script setup lang="ts">
|
|
const open = ref(false)
|
|
const items = ref(['Backlog', 'Todo', 'In Progress', 'Done'])
|
|
const selected = ref('Backlog')
|
|
</script>
|
|
|
|
<template>
|
|
<UInputMenu
|
|
v-model="selected"
|
|
v-model:open="open"
|
|
:items="items"
|
|
@focus="open = true"
|
|
/>
|
|
</template>
|