DemoComboboxBasic.vue 252 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 <script setup> const selectedItem = ref('Programming') const items = [ 'Programming', 'Design', 'Vue', 'Vuetify', ] </script> <template> <VCombobox v-model="selectedItem" :items="items" placeholder="deployment" /> </template>