In my app I am using Vuetify 2.0s v-data-table to display a table of data. I am trying to implement a loading linear-progress-bar while waiting for my elements to load. I am following the documentation , and when I add the props loading
and loading-text="bla"
, it shows the loading text and linear-progress-bar, but after the elements load in the linear-progress-bar does not go away.
I have tried setting loading="elements"
, which then only shows the loading text and not the linear progress bar. I have also tried :loading="elements"
which disables the entire loading feature.
<v-data-table
:items="elements"
:headers="elementsHeaders"
:search="elementsSearch"
hide-default-footer
loading
loading-text="Laden... even geduld aub"
>
I expect that with that code, when elements are loaded in that both the linear progress bar and loading text goes away.