-
Notifications
You must be signed in to change notification settings - Fork 1
Embedding #9
Comments
Originally posted by @Paebbels in #1 (comment) |
If i can add some of my though: My user-case for using Zoom would be in a CI settings. I wold like to run unit-test on gitlab runners and if they fail, a way to show the result via web-browser. Originally posted by @wifasoi in #1 (comment) |
I actually would like to use Zoom in:
I don't know if this is possible but probably someone needs to render it on the server side (SSR). This may be a really difficult task but can be a good feature for performance critical app. If I'm allowed to give some tips...make it framework agnostic and avoid using framework/lib that needs runtime libraries (e.g Vue, React, Angular, Inferno, Preact, etc). |
It is easier embedding React (Virtual DOM) component into real DOM then the other way around. |
Having Virtual DOM component simplifies SSR task. React, Preact, ... most of them have server rendering capability. |
I am inclining to write React-style stateless functional components. I wrote mostly for React and I am new to Vue. |
Hi @drom, as for me, I have 3 favorites:
Ah yes, all of them have SSR capabilities 😉 About React component in Vue. Actually, it's always a bad idea for integrating component specific framework into another framework. Most people don't want to have to install another framework just to use it. It's a waste of resource. In majority, no one want to do this in their Vue/Angular project 🙂
Another thing that I need to mention (it's specials case) is when used in a system that uses |
Btw, I found something interesting 😉 |
@DrSensor I am not a big fan of JSX nor Web Components. I would stick with plain vanilla ES2015 for this project. |
Embeddable so it can be integrated as a component into bigger UI application
DOM Type ?
Shadow DOMIDE
The text was updated successfully, but these errors were encountered: