* fix(docs): Props destructuring suggestion is not true anymore with the release of vue 3.5
* Update packages/docs/core-concepts/index.md
---------
Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com>
const store = useCounterStore()
// ❌ This won't work because it breaks reactivity
-// it's the same as destructuring from `props`
+// same as reactive: https://vuejs.org/guide/essentials/reactivity-fundamentals.html#limitations-of-reactive
const { name, doubleCount } = store // [!code warning]
name // will always be "Eduardo" // [!code warning]
doubleCount // will always be 0 // [!code warning]