uniapp 小程序报错:Interpolation inside attributes has been removed. Use v-bind or the colon shorthand instead. For example, instead of
代码为:
<view v-for="value in item.value" :key="value.id" @click="XXX" :id="{{value.key}}">
修改为:
<view v-for="value in item.value" :key="value.id" @click="XXX" :id="value.key">