[Vuejs]-How to get formating string in Vue.js

0👍

You are using v-for="item in siteObject.line_info". So ìtem is the current item in siteObject.line_info being itterated. Use that item to access its properties

<div class="description text-left" v-for="item in siteObject.line_info">
    <small>{{item.lineid}}</small>
    <small>{{item.site_site_id}}</small>
    <small>{{item.site_id}}</small>
</div>

Leave a comment