1👍
I think the attribute is overlayLoadingTemplate
in ag-grid instead of loadingOverlayComponent
. Kindly visit ag-grid overlays to see how you can add loader to your ag-grid table
- [Vuejs]-Data change updating at random – Vue/Vuex
- [Vuejs]-How to fetch data from Google Firestore into my Vue instance?
0👍
You import the TableProgress but you don’t use it. You must add it in components.
<script>
import TableProgress from "./TableProgress";
export default {
components: {
TableProgress
},
//...
}
</script>
- [Vuejs]-Global Components in Nuxt JS
- [Vuejs]-Vue – Is it possible to use Vuex getters in the computed property of a component?
Source:stackexchange.com