Vuetify v-simple-table loading state
Posted By: Anonymous I’m trying to show loading state in v-simple-data, but for some reason, it doesn’t work, maybe there is another way to do it? Here is my code: https://codesandbox.io/s/vuetify-template-forked-bmobx?file=/src/App.vue Solution You are resetting the dataLoading variable outside of the timeout. Therefore it is immediately set to false. You should move it inside the …