Asynchronous processing of setup function fails
Version
3.2.26
Reproduction link
Steps to reproduce
- Make the setup function asynchronous(async setup())
- Call asynchronous processing in setup function(await new Promise()) →Error message is displayed「Uncaught (in promise) TypeError: Cannot read properties of null (reading 'parentNode')」
What is expected?
I want the setup function to be able to be normally asynchronous
What is actually happening?
Maybe you haven't received the Promise well with the life cycle hook. The experimental feature suspense cannot be used either.
It looks like a similar issue has been resolved before, but the bug hasn't been fixed.