Is it safe to spread props
Just wanna double check if its okay to spread props from a reactivity standpoint.
I understand the possible issues with destructuring, I'm wondering if the same applies for spreading props onto child component ie
2 Replies
any form of reading something that could read signals has the same drawbacks
If you spread inside the JSX though that's handled specially, so that code should be fine
okay cool thanks