You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Clone the repo, go to packages/examples/vue3-demo-esm.
In the Layout host project edit the main.js and remove code related to dynamic remote to only use dynamic components on runtime inside Layout.vue
Dynamic button rendered inside mounted() of Layout.vue is displayed after adding 'dynamic' remote an unwraping ./Button component to render it inside the this.$refs.container.
What is actually happening?
Button is never rendered
Workaround
You need to await the moduleWraped.__tla Promise to render the component properly.
Versions
Step to reproduce
Clone the repo, go to packages/examples/vue3-demo-esm.
In the Layout host project edit the main.js and remove code related to dynamic remote to only use dynamic components on runtime inside Layout.vue
Build and run the example
What is Expected?
Dynamic button rendered inside
mounted()
of Layout.vue is displayed after adding 'dynamic' remote an unwraping./Button
component to render it inside thethis.$refs.container
.What is actually happening?
Button is never rendered
Workaround
You need to await the moduleWraped.__tla Promise to render the component properly.
The text was updated successfully, but these errors were encountered: