<view style="flex-direction: row;background-color: #2BD7FF; margin-top: 30rpx;" v-for="(item, index) in list" :key="item.id">
<rich-text class="case" :nodes="item.content" style="color: #232428;font-size: 30rpx;background: transparent;" />
</view>
for(let i=0; i< 30;i++){
list.push({
id: i,
content: [{
"name": "p",
"attrs": {
"style": "line-height: 60px;background: transparent;"
},
"children": [{
"type": "text",
"text": "44444"
}]
}]
})
}