SOURCE

console 命令行工具 X clear

                    
>
console
new Vue({
  el: '#app',
  data: {
    jTreeBomInfo:[
        {
            id:99,
            aa:1,
        },
        {
            id:88,
            aa:2,
        }
    ]
  }
})
<div id="app">
 <!-- {{jTreeBomInfo}} -->
 <table>
     <tr v-for="(item,index) in jTreeBomInfo" :key="index" :data-tt-id="item.id">
         <!-- {{item.id}} -->
         1
     </tr>
 </table>
</div>

本项目引用的自定义外部资源