more make eslint happy
This commit is contained in:
@ -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>
|
||||
|
||||
@ -11,7 +11,10 @@
|
||||
<script>
|
||||
export default {
|
||||
props: {
|
||||
title: String,
|
||||
title: {
|
||||
type: String,
|
||||
default: 'Title',
|
||||
}
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
@ -11,7 +11,10 @@
|
||||
<script>
|
||||
export default {
|
||||
props: {
|
||||
title: String,
|
||||
title: {
|
||||
type: String,
|
||||
default: 'Title',
|
||||
},
|
||||
},
|
||||
data: () => ({
|
||||
}),
|
||||
|
||||
@ -12,7 +12,10 @@
|
||||
<script>
|
||||
export default {
|
||||
props: {
|
||||
text: String,
|
||||
text: {
|
||||
type: String,
|
||||
default: 'Loading...',
|
||||
},
|
||||
show: Boolean,
|
||||
},
|
||||
data: () => ({
|
||||
|
||||
@ -43,7 +43,12 @@
|
||||
|
||||
<script>
|
||||
export default {
|
||||
props: ['pageTitle'],
|
||||
props: {
|
||||
pageTitle: {
|
||||
type: String,
|
||||
default: 'Title',
|
||||
},
|
||||
},
|
||||
data: () => ({
|
||||
foo: true
|
||||
})
|
||||
|
||||
@ -15,7 +15,10 @@
|
||||
<script>
|
||||
export default {
|
||||
props: {
|
||||
percentDone: Number,
|
||||
percentDone: {
|
||||
type: Number,
|
||||
default: 0,
|
||||
},
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
@ -38,7 +38,8 @@ export default {
|
||||
value: Boolean,
|
||||
section: {
|
||||
type: Number,
|
||||
required: false
|
||||
required: false,
|
||||
default: null,
|
||||
}
|
||||
},
|
||||
data: () => ({
|
||||
|
||||
Reference in New Issue
Block a user