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:""
            }
        ]
    }
})
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-1b43b84-2bf03.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-1b43b84-2bf03.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?