解决uniapp Prop being mutated: "placeholder"报错

想要解决的问题:封装一个组件A,组件A的placeholder有默认值,但又有几处需要从父组件传入自定义值,即想要父组件有传值时使用父组件,没有传值使用默认(默认有分情况或者使用语言包,‘default’用不了),本文不解决Prop双向绑定。
报错信息:
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: “placeholder”

报错原因:修改了父组件传值,但传入的prop中的值是不允许改变的
解决办法:使用两个变量
组件A:




                    
                    

你可能感兴趣的:(uniapp)