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>
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b34810-2bf27.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b34810-2bf27.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?