I want to be able to load skeleton-vue component on page-init before actual page is transitioned into DOM.
Like in traditional jQueryAjax functionality,
$.ajax({
url: url,
data: data,
…
succes: function(resp){
…
},
beforeSend: function(){
// show loading indicator until response is returned
// In my case i will like to implement the skeleton component here before the page or resource is ready to be rendered.
}
});
Reason: I don’t want my app visitors to see blank screen until the entire DOM content is fully loaded before rendering it to view.