Can clearTimeout be used for a setTimeout function assigned to a Vue Method? If yes, how can it be accomplished?
methods: {
timeoutController() {
setTimeout(function() {
this.controllerShown = false;
}, 3000);
}
....