a minute ago

子コンポーネントの関数に$refsでアクセスした時のエラー対応


事象

子コンポーネントの関数にrefsでアクセスしようとした時、typescriptに怒られる

TS2339: Property 'xxxx' does not exist on type 'Vue | Element | Vue[] | Element[]'.   Property 'xxxx' does not exist on type 'Vue'.

対策

子コンポーネントを一旦anyにキャストして回避する。

(this.$refs.childComponent as any).xxxx

Related Articles