vuetify icon indicating copy to clipboard operation
vuetify copied to clipboard

feat(keyboard): add new composable

Open johnleider opened this issue 3 years ago • 1 comments
trafficstars

Motivation and Context

This is very basic and meant to start a discussion as opposed to being exactly how we implement this.

Markup:

<template>
  <div class="ma-4 pa-4">
    <v-list variant="tonal">
      <v-list-item title="Title 1" value="0" />
      <v-list-item title="Title 2" value="1" disabled />
      <v-list-item title="Title 3" value="2" />
      <v-list-item title="Title 4" value="3" />
    </v-list>
  </div>
</template>

<script>
  export default {

  }
</script>

johnleider avatar Aug 12 '22 19:08 johnleider

This already pretty much exists in VSlideGroup: https://github.com/vuetifyjs/vuetify/blob/8487c209f5d6c812a2dafbead42bc343ca21c57b/packages/vuetify/src/components/VSlideGroup/VSlideGroup.tsx#L180-L252

KaelWD avatar Aug 16 '22 14:08 KaelWD

Hello, is there anything that I can do to help for this PR? We are really wanting to use keyboard in our internal app :-)

freesoul avatar Oct 18 '22 14:10 freesoul

Replaced with #15998

KaelWD avatar Oct 31 '22 17:10 KaelWD