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

This commit is contained in:
Daniel Roe 2024-09-04 16:55:38 +01:00
parent c5f3292d63
commit 77bd30a0b8
No known key found for this signature in database
GPG Key ID: 3714AB03996F442B

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,
},
/**