Previously, I learned lambda as shorten way to make instance of function(I learned from C# book), but when I used lambda with Vue.js, I encountered a problem. This works well:
mounted: function(){ (...)
But this not works:
mounted: () => { (...) }
I want to get perfect explanation for this.