How to calculate how often a page is loaded at the code level?

I am using vue+aixos.

scene: the animation is always loading, when the page comes in. I will close the animation after the page loaded. Where do I need to close the animation?

clipboard.png

Mar.01,2021

after the aixos request ends


if you are waiting for the interface data axios request response, shut down.
if you are waiting for the view to render vm.$nextTick to close.

mounted: function () {
  this.$nextTick(function () {
    // Code that will run only after the
    // entire view has been rendered
  })
}

vue api

Menu