vuetify icon indicating copy to clipboard operation
vuetify copied to clipboard

feat(VSelects): show list in a dialog on mobile

Open KaelWD opened this issue 7 months ago • 0 comments

Description

closes #4059

Markup:

<template>
  <v-app>
    <v-container>
      <v-autocomplete
        :items="['California', 'Colorado', 'Florida', 'Georgia', 'Texas', 'Wyoming', '1', '2', '3', '4', '5', '6', '7', '8']"
        label="Autocomplete"
        hide-no-data
      />
    </v-container>
  </v-app>
</template>

KaelWD avatar May 22 '25 07:05 KaelWD