[Vuejs]-Vue.js sticky nav bar only executed one time and having error: scrollTop is always 0

0👍

The function executes immidately because you are calling it with ();

Just your code to this:

window.onscroll = this.fixNavBar;

Leave a comment