vue.js에서 아래와 같은 경고 문구가 나왔을 경우 <table> 태그 안에 <tbody> 태그를 넣어주면 해결 된다.
● 문제 현상
warning: <tr> cannot be child of <table>, according to HTML specifications. This can cause hydration errors or potentially disrupt future functionality.
66 | <td>{{ cur }}</td>
67 | </tr>
68 | <tr>
| ^^^^
69 | <td>operator</td>
● 수정 내용
<table>
<tbody>
<tr>
<td></td>
</tr>
</tbody>
</table>