2 button component in single row vuetify
<template v-slot:[`item.action`]="{ item }" >
<v-container grid-list-sm>
<v-layout row justify-space-around>
<v-flex md3>
<v-btn depressed @click="view(item.book)" color="primary">View</v-btn>
</v-flex>
<v-flex md3>
<v-btn depressed @click="viewUpdate(item.book,item.id_book)" color="primary">Update</v-btn>
</v-flex>
</v-layout>
</v-container>
</template>