* Explicit title for store props destructuring
I' m pretty sure lots of people are googling how to destructure the store. Let's make it easy with a nice and beautiful title
* Update packages/docs/core-concepts/index.md
---------
Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com>
</script>
```
+## Destructuring from a Store
+
In order to extract properties from the store while keeping its reactivity, you need to use `storeToRefs()`. It will create refs for every reactive property. This is useful when you are only using state from the store but not calling any action. Note you can destructure actions directly from the store as they are bound to the store itself too:
```vue