[Vuejs]-Vuejs TypeError: Cannot use 'in' operator to search for

3👍

this.$set takes three arguments, the first of which is the object to be searched. You should be calling it like

this.$set(this, 'loginSubmit', 'Loggin in...');
👤Roy J

Leave a comment