Vue 中的 props
Vue2 中的 props
props 里的数据是只读的,如果进行了修改,Vue 就会发出警告。
如果业务确实需要修改,请把这个值给到 data 里面的数据,因为 props 比 data 先执行,然后再去修改 data 中的数据
Vue3 中的 props
相关链接:
https://blog.csdn.net/B1841630/article/details/129362131
这一路,灯火通明
props 里的数据是只读的,如果进行了修改,Vue 就会发出警告。
如果业务确实需要修改,请把这个值给到 data 里面的数据,因为 props 比 data 先执行,然后再去修改 data 中的数据
相关链接:
https://blog.csdn.net/B1841630/article/details/129362131