如何读取 properties 作为 data 的初始值?
我想以传入的 properties 作为 data 的初始值
Component({ properties: { a: { type: Number, value: 11 } }, data: { b: this .data.a - 1, } }); |
这样写会报错
TypeError: Cannot read property ‘data’ of undefined