16 lines
406 B
JavaScript
16 lines
406 B
JavaScript
import { Controller } from '@hotwired/stimulus';
|
|
|
|
/*
|
|
* The following line makes this controller "lazy": it won't be downloaded until needed
|
|
* See https://github.com/symfony/stimulus-bridge#lazy-controllers
|
|
*/
|
|
/* stimulusFetch: 'lazy' */
|
|
export default class extends Controller {
|
|
static targets = ['input']
|
|
|
|
clearSearch() {
|
|
this.inputTarget.value = '';
|
|
this.inputTarget.focus();
|
|
}
|
|
}
|