0๐
I think this
created() {
this.autoRotateImages();
}
should be
created: function() {
this.autoRotateImages();
}.bind(this)
Are you transpiling your production code?
- [Vuejs]-How to define the right Preset When using Nuxt in order to run on IE
- [Vuejs]-How to redirected to home after successful login with Vue.JS
0๐
Try
npm cache clear -f
And than
npm install
May be it will solve issue
Source:stackexchange.com