this?
searchPlace: debounce(() => {
this.autoComplete()
}, 500)
TS7017: Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature
а так не срабатывает searchPlace() { debounce(() => { this.autoComplete() }, 500) }
searchPlace: debounce(function () { this.autoComplete() }, 500)
debounce возвращает новую функцию, а не вызывает текущую, не путайте с setTimeout
вот так посмотри
Здесь на this TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.
плейграунд ТС не ругается
вот ещё https://stackoverflow.com/questions/41944650/this-implicitly-has-type-any-because-it-does-not-have-a-type-annotation
Обсуждают сегодня