vuetify icon indicating copy to clipboard operation
vuetify copied to clipboard

feat(VSelect): opting out keyboard lookup

Open 3dyuval opened this issue 1 year ago • 0 comments

Description

solves #19375

Markup:

<script setup lang="ts">
const keyboardLookup = false
</script>

<template>
  <div class="d-flex flex-column">
    lookup is {{ keyboardLookup ? 'enabled' : 'disabled' }}}
    <v-select
      placeholder="Testing keyboard lookup"
      :keyboard-lookup="keyboardLookup"
      :items="['a', 'b', 'c']"
    />
  </div>
</template>

3dyuval avatar Mar 12 '24 11:03 3dyuval