扫码关注官方订阅号
我喜欢这个组件:
Current coords: {{ coords }}
我尝试使用 updateCoords 方法更新 prop coords 值,但收到错误消息:
updateCoords
coords
未捕获类型错误:无法设置未定义的属性(设置 '坐标')
在我的情况下如何正确更新 props 值?
道具是只读的:https://v3.vuejs.org/guide/component -props.html#one-way-data-flow
如果你想要有两种方式绑定 props,你需要实现 v-model 模式:https://v3-migration.vuejs.org /break-changes/v-model.html#_3-x-syntax
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
道具是只读的:
https://v3.vuejs.org/guide/component -props.html#one-way-data-flow
如果你想要有两种方式绑定 props,你需要实现 v-model 模式:
https://v3-migration.vuejs.org /break-changes/v-model.html#_3-x-syntax