Why can I just change count and update it in the child component?
Vue version
^3.2.47
Link to minimal reproduction
Steps to reproduce
{{ count }}
Child
props:{{ count }}
What is expected?
I know how to use props properly, but there will be no warning on the console and the data in the child component will be updated normally. This is like redeclaring the ref result with count alone in the child component, and it won't affect the change of count in the parent component
What is actually happening?
It normally modifies the count in the child component and is the latest value when the count is printed without any effect. I found that switching to the dev version of the Vue SFC Playground does have this problem, and whenever you switch to prod there is a warning
System Info
No response
Any additional comments?
No response