V-for loop output v-bind

< template VFF = "(vo,index) in timeorder" >

)

< div vtalk bindvir style = "vo.process" class= "bar" > < / div >

< / template >

how to loop out vo.process

Oct.11,2021

make sure it's style, not class?.

<div :style="{'background-color' : vo.process}">1111</div>

I don't understand why you put this vo.process in the style tag. You'd better print your vo.process object, or you don't know what you want to do.
if you want to loop out the following div, just put another layer of v-for on it.

<div v-for="(item,index) in vo.process" class="bar"></div>

do you mean the value in the loop vo or something?

<div v-for="(val, key) in vo">{{key}},{{val}}<div>
Menu