index.blade
blade
1<table class="table"> 2 <thead class="thead-light"> 3 <tr> 4 <th>ID</th> 5 <th>名前</th> 6 <th>メールアドレス</th> 7 <th>メッセージ数</th> 8 <th>ユーザーの削除</th> 9 </tr> 10 </thead> 11 <delete-table :users="{{$users}}" ></delete-table> 12 </table>
DeleteTable.vue
vue
1<template> 2 <tbody> 3 <tr v-for="(user,index) in usersNew" :key="user.id"> 4 <th>{{user.id}}</th> 5 <th>{{user.name}}</th> 6 <th>{{user.email}}</th> 7 <th>{{user.messages_count}}</th> 8 <th><input type="button" class="btn-outline-secondary" value="削除" @click="del(user.id,index)"></th> 9 </tr> 10 </tbody> 11</template>
テーブル内のtbodyタグ内をコンポーネント化し、削除ボタンを押すとその行が削除されるようにしたいです。動作はするのですが画像のようにtbodyが先に読み込まれます。どうすればtable内にうまくtbodyが読み込まれるでしょうか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。