I'm looking for a way to add web-components dynamically, either through <component :is="..." /> or :v-html="...". Vue renders the html after the plugin runs, so the plugin never sees the dynamically added web-components. Any suggestions to get web-components that are server-side-rendered and dynamic?
I'm looking for a way to add web-components dynamically, either through
<component :is="..." />
or:v-html="..."
. Vue renders the html after the plugin runs, so the plugin never sees the dynamically added web-components. Any suggestions to get web-components that are server-side-rendered and dynamic?