f}
Size: a a a
f}
f}
СМ
SW
Д
SW
Д
АЗ
Д
HK
СМ
DS
DS
СМ
DS
DS
R
button @click="setComponent"
component :is="componentName"
components: {
'MyComponent' => import('./MyComponent')
}
setComponent(){
this.componentName = 'MyComponent'
// и вот тут я хочу вызвать метод компонета через ref, но компонент с тому времени не загрузился или не смонтировался
// помогает только this.nextTick
this.$refs.MyComponent.method()
}
СМ
Е
DS
button @click="setComponent"
component :is="componentName"
components: {
'MyComponent' => import('./MyComponent')
}
setComponent(){
this.componentName = 'MyComponent'
// и вот тут я хочу вызвать метод компонета через ref, но компонент с тому времени не загрузился или не смонтировался
// помогает только this.nextTick
this.$refs.MyComponent.method()
}