问题描述:
[Vue warn]: Avoid mutating a prop directly since the value will be overwritten whenever the parent component re-renders. Instead, use a data or computed property based on the prop’s value. Prop being mutated: “placement”
原因分析:
如果依赖版本是”element-ui”: “^2.15.7” 会安装最新版本,最新版本有时间选择期报错问题,不影响功能但看到console控制台报红 就不能接受
解决方案:
固定版本。
"dependencies": {
"element-ui": "2.15.7",
}
1、去掉【^】锁定稳定版本2.15.7
2、删除node_modules
3、【npm i】or 【yarn】
4、重启项目
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/79212.html