import {escapeHtml} from "../services/util";
import {onChildEvent} from "../services/dom";
+import {Component} from "./component";
const ajaxCache = {};
/**
* AutoSuggest
- * @extends {Component}
*/
-class AutoSuggest {
+export class AutoSuggest extends Component {
setup() {
this.parent = this.$el.parentElement;
this.container = this.$el;
this.hideSuggestions();
}
}
-}
-
-export default AutoSuggest;
\ No newline at end of file
+}
\ No newline at end of file