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>`;