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
}
- [Vuejs]-Parent height over the child content CSS
- [Vuejs]-New issue after refactoring my code: "Invalid prop: type check failed for prop"
Source:stackexchange.com