I am using vuetify v-data-table to display data. The issue I am facing here is No Settings Yet message always shows for like 1 second and then displays the data. Its like no data message loads first and then the actual data shows up. Is there a way to fix this.
JavaScript
x
66
66
1
<template>
2
<div>
3
<v-card>
4
<v-data-table
5
:headers="headers"
6
:items="settings"
7
hide-default-footer
8
disable-pagination
9
:mobile-breakpoint="0">
10
11
<template slot="top" v-if="isLoading">
12
<v-progress-linear
13
indeterminate
14
color="red"
15
></v-progress-linear>
16
</template>
17
18
<template slot="item" slot-scope="props">
19
<tr>
20
<td>{{ props.item.name }}</td>
21
<td>{{ props.item.value }}</td>
22
</tr>
23
</template>
24
<template slot="no-data" >
25
<v-alert id='no-data' :value="true" color="error" icon="warning">
26
No Settings Yet
27
</v-alert>
28
</template>
29
</v-data-table>
30
</v-card>
31
</div>
32
</template>
33
34
<script>
35
36
export default {
37
data: function() {
38
return {
39
settings: [],
40
headers: [
41
{ text: 'Name', value: 'name'},
42
{ text: 'Value', value: 'value'},
43
{ text: 'Actions', sortable: false}
44
],
45
isLoading: false
46
}
47
},
48
created() {
49
this.fetchSettings();
50
},
51
52
methods: {
53
fetchSettings() {
54
var that = this;
55
56
that.isLoading = true;
57
this.$axios.get('/settings.json')
58
.then(response => {
59
that.settings = response.data;
60
that.isLoading = false;
61
});
62
}
63
}
64
}
65
</script>
66
Advertisement
Answer
I think you can do this by adding v-if directive in no-data slot like below example
JavaScript
1
7
1
<template slot="no-data" v-if="!isLoading">
2
<v-alert id='no-data' :value="true" color="error"
3
icon="warning">
4
No Settings Yet
5
</v-alert>
6
</template>
7