How can vue dynamically add json data to tbody after obtaining it?

the following tag is dynamically generated tr and td, using jquery is directly append to the tbody of the table, but how should I write it in vue? Do you render with components?

    var str=`
           <tr>
           <td class="num"></td>
           <td class="result-content">${txt}</td>
           <td class="pos-st">(${points[0]},${points[1]})</td>
           <td class="pos-st">(${points[2]},${points[3]})</td>
           <td class="pos-st">(${points[4]},${points[5]})</td>
           <td class="pos-st">(${points[6]},${points[7]})</td>
           <tr>`;

         
May.06,2022

add a loop to td to drive the increase or decrease of dom nodes through data
html:

index{{index}},{{key}}:{{t_item}}</td>
       </tr>
 </table>


//JS
    var app = new Vue({
    el:"-sharptable",
    data:{
        content:[
            {
                star:"",
                honor:"",
                name:""
            },
            {
                star:"",
                honor:"",
                name:""
            },
            {
                star:"",
                honor:"",
                name:""
            }
        ]
    }
})
Menu