Dmitry
Dmitry
"Failed to mount component: template or render function not defined." with render inside async setup
I found [Suspense](https://gist.github.com/ffxsam/b7f415969c9529279ec35e95e5ffd7af) for Vue 2 Should I use it or there is another solution? UPD: It doesn't work well (
"Failed to mount component: template or render function not defined." with render inside async setup
Found [this trick](https://antfu.me/posts/async-with-composition-api)  Earlier i used the same but thought it's not a good workaround If there aren't any another solutions - issue can be closed :)
@llccrr , I had the same problem. For solving this i've just used `React.useRef(null)` instead of `React.createRef()` and all became OK. Reason (in my case): during every re-render `` received...