0👍
You can make use of data()
property in the component and define a variable with default value false.
data () {
return {
filterApplied: false;
}
}
Then when selecting the filter, change the data property to true
and on the basis of this value send the request with or without params.
- [Vuejs]-Search functionality in v-menu in vuetify
- [Vuejs]-Disable save button when there are error with laravel and vuetify
Source:stackexchange.com