eslint autofixes for vuetify 2

This commit is contained in:
2019-10-01 23:19:40 -07:00
parent e6e060da80
commit 29cf8b8739
18 changed files with 215 additions and 206 deletions

View File

@ -3,7 +3,7 @@
<v-dialog v-model="show" max-width="250">
<v-card>
<DialogHeading title="Remove Model">
<v-btn icon @click="show = false" class="ma-0 pa-0">
<v-btn icon class="ma-0 pa-0" @click="show = false">
<v-icon color="white">clear</v-icon>
</v-btn>
</DialogHeading>
@ -16,10 +16,10 @@
</v-card-text>
<v-card-actions>
<v-spacer></v-spacer>
<v-spacer/>
<v-btn text @click="show = false">Cancel</v-btn>
<v-btn color="primary" text @click="doDelete()">OK</v-btn>
<v-spacer></v-spacer>
<v-spacer/>
</v-card-actions>
</v-card>
</v-dialog>
@ -34,11 +34,11 @@ export default {
components: {
DialogHeading,
},
data: () => ({
}),
props: {
value: Boolean,
},
data: () => ({
}),
computed: {
show: {
get() {