Skip to content

Instantly share code, notes, and snippets.

@wmelton
Created February 6, 2024 15:34
Show Gist options
  • Save wmelton/534f7466e536d215d4c50e5d7a861a93 to your computer and use it in GitHub Desktop.
Save wmelton/534f7466e536d215d4c50e5d7a861a93 to your computer and use it in GitHub Desktop.
Vue Prop Key Error Example
// Child Component
<template>
// ... some template code
</template>
<script setup lang="ts">
const props = defineProps({
key: {
required: true,
type: String
}
})
</script>
// Parent Component
<template>
<ChildComponent key="xyz" />
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment