vuetify
vuetify copied to clipboard
feat(keyboard): add new composable
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>
This already pretty much exists in VSlideGroup: https://github.com/vuetifyjs/vuetify/blob/8487c209f5d6c812a2dafbead42bc343ca21c57b/packages/vuetify/src/components/VSlideGroup/VSlideGroup.tsx#L180-L252
Hello, is there anything that I can do to help for this PR? We are really wanting to use keyboard in our internal app :-)
Replaced with #15998