This commit is contained in:
		| @@ -5,8 +5,8 @@ | |||||||
|  |  | ||||||
|         <!-- A virtual column --> |         <!-- A virtual column --> | ||||||
|         <template #cell(actions)="data"> |         <template #cell(actions)="data"> | ||||||
|           <b-button class="mx-1" size="sm" variant="primary" @click="actionInfo(data.id)"><b-icon icon="info"/></b-button> |           <b-button class="mx-1" size="sm" variant="primary" @click="actionInfo(data)"><b-icon icon="info"/></b-button> | ||||||
|           <b-button class="mx-1" size="sm" variant="danger" @click="actionDelete(data.id)"><b-icon icon="trash"/></b-button> |           <b-button class="mx-1" size="sm" variant="danger" @click="actionDelete(data)"><b-icon icon="trash"/></b-button> | ||||||
|         </template> |         </template> | ||||||
|  |  | ||||||
|         <template #table-busy> |         <template #table-busy> | ||||||
| @@ -67,6 +67,12 @@ export default { | |||||||
|     rowClass(item, type) { |     rowClass(item, type) { | ||||||
|       if (!item || type !== 'row') return |       if (!item || type !== 'row') return | ||||||
|       if (item.default) return 'table-info' |       if (item.default) return 'table-info' | ||||||
|  |     }, | ||||||
|  |     actionDelete({item}) { | ||||||
|  |       console.log(item.id); | ||||||
|  |     }, | ||||||
|  |     actionInfo({item}) { | ||||||
|  |       console.log(item.id); | ||||||
|     } |     } | ||||||
|   }, |   }, | ||||||
|   mounted() { |   mounted() { | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user