1<template v-slot:[`item.action`]="{ item }" >
2 <v-container grid-list-sm>
3 <v-layout row justify-space-around>
4 <v-flex md3>
5 <v-btn depressed @click="view(item.book)" color="primary">View</v-btn>
6 </v-flex>
7 <v-flex md3>
8 <v-btn depressed @click="viewUpdate(item.book,item.id_book)" color="primary">Update</v-btn>
9 </v-flex>
10 </v-layout>
11 </v-container>
12</template>