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

View File

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