more make eslint happy

This commit is contained in:
2019-10-02 13:49:20 -07:00
parent a3643dbcb5
commit 287e5a59a9
7 changed files with 27 additions and 9 deletions

View File

@ -26,7 +26,7 @@
and so section-drop can cover all interior and so section-drop can cover all interior
--> -->
<v-list-item-content class="section-parent"> <v-list-item-content class="section-parent">
<v-list-item-title v-html="item.name"/> <v-list-item-title v-text="item.name"/>
<v-list-item-subtitle <v-list-item-subtitle
class="caption font-weight-light" class="caption font-weight-light"
color="grey lighten-2" color="grey lighten-2"
@ -67,7 +67,7 @@
@click="selectModel(item.model)" @click="selectModel(item.model)"
> >
<v-list-item-content> <v-list-item-content>
<v-list-item-title v-html="item.name"/> <v-list-item-title v-text="item.name"/>
<v-list-item-subtitle <v-list-item-subtitle
class="caption font-weight-light" class="caption font-weight-light"
color="grey lighten-2"> color="grey lighten-2">
@ -107,7 +107,7 @@
> >
<v-list-item-content> <v-list-item-content>
<v-list-item-title><b>{{ item.id }}</b> {{ item.name }}</v-list-item-title> <v-list-item-title><b>{{ item.id }}</b> {{ item.name }}</v-list-item-title>
<v-list-item-subtitle v-html="item.color"/> <v-list-item-subtitle v-text="item.color"/>
</v-list-item-content> </v-list-item-content>
<v-list-item-action> <v-list-item-action>

View File

@ -11,7 +11,10 @@
<script> <script>
export default { export default {
props: { props: {
title: String, title: {
type: String,
default: 'Title',
}
}, },
} }
</script> </script>

View File

@ -11,7 +11,10 @@
<script> <script>
export default { export default {
props: { props: {
title: String, title: {
type: String,
default: 'Title',
},
}, },
data: () => ({ data: () => ({
}), }),

View File

@ -12,7 +12,10 @@
<script> <script>
export default { export default {
props: { props: {
text: String, text: {
type: String,
default: 'Loading...',
},
show: Boolean, show: Boolean,
}, },
data: () => ({ data: () => ({

View File

@ -43,7 +43,12 @@
<script> <script>
export default { export default {
props: ['pageTitle'], props: {
pageTitle: {
type: String,
default: 'Title',
},
},
data: () => ({ data: () => ({
foo: true foo: true
}) })

View File

@ -15,7 +15,10 @@
<script> <script>
export default { export default {
props: { props: {
percentDone: Number, percentDone: {
type: Number,
default: 0,
},
}, },
} }
</script> </script>

View File

@ -38,7 +38,8 @@ export default {
value: Boolean, value: Boolean,
section: { section: {
type: Number, type: Number,
required: false required: false,
default: null,
} }
}, },
data: () => ({ data: () => ({