[Vuejs]-How to scroll a div left programmatically in vue?

0👍

I had the same problem with the month view not firing viewDidMount. Instead of using viewDidMount try replacing it with viewClassNames instead. It fires on every view change.

Replace:

viewDidMount: function(info) {
    // Your code here
}

With:

viewClassNames: function(info) {
    // Your code here
}

Leave a comment