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
-->
<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
class="caption font-weight-light"
color="grey lighten-2"
@ -67,7 +67,7 @@
@click="selectModel(item.model)"
>
<v-list-item-content>
<v-list-item-title v-html="item.name"/>
<v-list-item-title v-text="item.name"/>
<v-list-item-subtitle
class="caption font-weight-light"
color="grey lighten-2">
@ -107,7 +107,7 @@
>
<v-list-item-content>
<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-action>

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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