var playResource: some View {
LazyVStack(alignment: .leading) {
ForEach(detailViewModel.videoDetail.ResourceModuleList, id: \.id) { item in
LazyVStack {
Text(item.title)
ForEach(item.links, id:\.id) { a in
LazyHStack {
Button {
} label: {
Text(a.title)
}
}
}
}
}
}
}

报错文案: Cannot convert value of type '[ResourceLink]' to expected argument type 'Binding<C>'
请问这是什么原因呀?