нашел такое:
I also recognized that (only on nuxt production, not in dev) HTML is written before variables are assigned through "props: ['commentsData'],". therefore autoscroll function is triggered before some variable exists. Fix this with:
computed: { autoLoadDisabled() { return this.loading || this.commentsData.length === 0; }, },