How to pull data from a Vuetify Datatable selected row
问题 I have a Vuetify Datatable <v-data-table :headers="headers" :items="members" item-key="id" v-model="selected" :search="search" > <template slot="items" slot-scope="props"> <tr :active="props.selected" @click="select(props.item)"> <td>{{ props.item.name }}</td> <td class="text-xs-right">{{ props.item.FirstName}}</td> <td class="text-xs-right">{{ props.item.LastName }}</td> <td class="text-xs-right">{{ props.item.email }}</td> <td class="text-xs-right">{{ props.item.department}}</td> <td class=