https://developers.weixin.qq.com/miniprogram/dev/framework/view/two-way-bindings.html
该教程中,自定义组件中属性名myValue:
// custom-component.js
Component({
properties: {
myValue: String
}
})
在使用该组件时,里面的属性名写成了my-value,两者不统一。
<custom-component model:my-value="{{pageValue}}" />
不是写错,是因为大写会转成小写,wxml使用短横线分割