代码这样写:
index: index
报错:
Assigning the 'REGULAR' decorated attribute 'index' to the '@Prop' decorated attribute 'index' is not allowed. <etsLint>
修改后:
index: index as number
代码这样写:
index: index
报错:
Assigning the 'REGULAR' decorated attribute 'index' to the '@Prop' decorated attribute 'index' is not allowed. <etsLint>
修改后:
index: index as number