0๐
I got a fix for this
clearAll: function() {
for (var i = 0; i < this.shopFilters.length; i++) {
var filter = this.shopFilters[i];
filter.buttonActive = false;
filter.filterVisible = false;
for (var j = 0; j < filter.values.length; j++) {
var option = filter.values[j];
option.selected = false;
}
}
}, // end clearAll
- [Vuejs]-Wrong auth code using laravel and pusher when using a presence channel
- [Vuejs]-Vue.js โ Element UI โ get the state of form validation
Source:stackexchange.com