Ошибка собственно в методе Vue компонента:
methods: {
...
dropdownTrigger (e: Event | undefined) {
if (e) {
e?.stopPropagation()
this.$refs.list.scrollTo(0, 0)
this.isListVisible = !this.isListVisible
if (!this.isListVisible) this.$refs.input.blur()
this.selected = this.value
? [...this.value]
: []
}
},
...
}
Ошибка указывающая на
this.$refs.list.scrollTo(0, 0)
:
Property 'scrollTo' does not exist on type 'Vue | Element | Vue[] | Element[]'.
Property 'scrollTo' does not exist on type 'Vue'.ts(2339)
Использую дефолтный Nuxt + TypeScript, в @types есть 2 файла:
vue-shim.d.ts
declare module '*.vue' {
import Vue from 'vue'
export default Vue
}
tsx-shim.d.ts
import Vue, { VNode } from 'vue';
declare global {
namespace JSX {
interface Element extends VNode {}
interface ElementClass extends Vue {}
interface IntrinsicElements {
[element: string]: any;
}
}
}