记录vue2.0老项目 安装依赖之后 使用日期选择器报错 升级 element-ui 2.15.7 后遇到 el-date-picker 警告问题
作者:互联网
最近从之前同事手里接到的项目,脚手架vue-cli2.0安装的,项目比较老了,使用npm install 安装依赖,运行项目,在项目中使用element 日期选择器的时候 控制台出现了 Prop being mutated: "placement"
警告,完整警告:
警告如下:
[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"
错误原因:
锁定组件,发现是 el-date-picker 组件抛出的警告。通过在 github 上搜索,最终找到了答案
问题出在了这个 PR #21806 增加了 props placement 用来适应位置,但是之前的代码 created 时有给 placement 赋值。
this.placement = PLACEMENT_MAP[this.align] || PLACEMENT_MAP.left;
说白了之前 placement 是 data 的对象,现在变成 props 了,然后修改就报错了
解决方案
想要解决这个问题,可以修改版本到 2.15.8
npm uninstall element-ui npm install element-ui@2.15.8 -s
参考文章:https://www.ydyno.com/archives/1597.html
解决方案来自:https://github.com/ElemeFE/element/issues/21905
标签:picker,npm,2.15,placement,element,报错,ui,警告,选择器 来源: https://www.cnblogs.com/mathrandom/p/16415364.html