I have currently assigned a setTimeout function to a Vue method and I want to use clearTimeout for this function. Is that possible? If so, how can I do this?
methods: {
timeoutController() {
setTimeout(function() {
this.controllerShown = false;
}, 3000);
}
....