fix(schema): enable `propsDestructure` by default (#28830)

This commit is contained in:
Daniel Roe 2024-09-04 16:55:38 +01:00 committed by GitHub
parent 6c98cdc645
commit 4340cd5698
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 3 deletions

View File

@ -31,11 +31,10 @@ export default defineUntypedSchema({
},
/**
* Vue Experimental: Enable reactive destructure for `defineProps`
* @see [Vue RFC#502](https://github.com/vuejs/rfcs/discussions/502)
* Enable reactive destructure for `defineProps`
* @type {boolean}
*/
propsDestructure: false,
propsDestructure: true,
},
/**