子コンポーネントの関数に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