СЛ
У меня mounted такой. Там эта функция как колбэк вызывается здесь " .on("enter", callback_stat)":
```
mounted() {
// Declare Scene
function callback_stat () {
return this.SendStat()
}
const scene2 = this.$scrollmagic.scene({
// ID of element where animation starts
triggerElement: '#trigger2',
// {0,0.5,1} - animations starts from {top,center,end} of window
triggerHook: 0.5,
// Duration of animation
duration: 3000
})
.on("enter", callback_stat)
this.$scrollmagic.addScene(scene2)
},
```