[Vuejs]-How to display data using v-for and CSS Grid

0👍

i have no idea how to write pug code but you should be able to somehow write something like this :

.display-data( v-for='(item, idx) in $store.state.stepOne.textfield' :key='idx' ) 
    span {{$store.state.stepOne.textfield[idx].label}}
    span {{$store.state.stepOne.textfield[idx].value}}

something like this could work

👤Dirk

Leave a comment