Skip to content

Instantly share code, notes, and snippets.

@Hawxy
Created May 15, 2023 15:54
Show Gist options
  • Save Hawxy/d26740e2dd0e4c375f005badea107472 to your computer and use it in GitHub Desktop.
Save Hawxy/d26740e2dd0e4c375f005badea107472 to your computer and use it in GitHub Desktop.
Vuetify 3 Generics Error Reproduction
<template>
<v-autocomplete v-model="value" :items="items"> </v-autocomplete>
</template>
<script setup lang="ts" generic="T extends object">
import { ref } from 'vue';
const value = ref<T>();
defineProps<{
items: T[];
}>();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment