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