Files
online.tbbank.gov.tm-larave…/nova/resources/js/mixins/TogglesTrashed.js
2024-09-01 18:54:23 +05:00

29 lines
478 B
JavaScript

export default {
data: () => ({
withTrashed: false,
}),
methods: {
/**
* Toggle the trashed state of the search
*/
toggleWithTrashed() {
this.withTrashed = !this.withTrashed
},
/**
* Enable searching for trashed resources
*/
enableWithTrashed() {
this.withTrashed = true
},
/**
* Disable searching for trashed resources
*/
disableWithTrashed() {
this.withTrashed = false
},
},
}