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,20 +3,20 @@
<v-dialog v-model="show" width="250">
<v-card>
<DialogHeading title="Model Info">
<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>
<v-card-text>
<v-text-field v-model="name" label="Name" required></v-text-field>
{{modelMaterialCount}} {{modelMaterialCount | pluralize('material') }}
<v-text-field v-model="name" label="Name" required/>
{{ modelMaterialCount }} {{ modelMaterialCount | pluralize('material') }}
</v-card-text>
<v-card-actions>
<v-spacer></v-spacer>
<v-spacer/>
<v-btn color="primary" text @click="show = false">OK</v-btn>
<v-spacer></v-spacer>
<v-spacer/>
</v-card-actions>
</v-card>
</v-dialog>
@ -31,11 +31,11 @@ export default {
components: {
DialogHeading,
},
data: () => ({
}),
props: {
value: Boolean,
},
data: () => ({
}),
computed: {
show: {
get() {