1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Nuxt 3 の警告 - warning: <tr> cannot be child of <table>, according to HTML specifications.

Posted at

問題

Nuxtを起動するとWarningが表示される

 warning: <tr> cannot be child of <table>, according to HTML specifications. 
This can cause hydration errors or potentially disrupt future functionality.

対応

Nuxtバージョンアップで <table> 直下に <tr> を書くと警告されるようになったので、
<table> 配下には <thead><tbody> を書くようにすれば良い

例:

<table>
  <thead>
    <tr>
      <th>***</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>***</td>
    </tr>
  </tbody>
</table>

チャットメンバー募集

何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。

プロフィール・経歴

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?