-
My web application relies on vue.js as the framework, necessitating the use of @remote-ui/vue for the host environment. However, I encountered an issue on the remote environment where @remote-ui/vue does not offer intellisense as @remote-ui/react does due to its direct support for JSX. Additionally, the latest tools do not seamlessly support vue.js with JSX bundling, in contrast to react JSX where esbuild works effortlessly out of the box. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @hamza-rd, sorry for missing your message here, and the issues you opened. As far as I know, no one actively used the To answer part of your original question: yes, it’s no problem to mix-and-match JavaScript libraries on the remote and host side of a remote-ui project. You may not need any of this anymore, but we've just completely rewritten As part of this refactor, we’ve removed the |
Beta Was this translation helpful? Give feedback.
Hi @hamza-rd, sorry for missing your message here, and the issues you opened. As far as I know, no one actively used the
@remote-ui/vue
package, which you could probably have guessed based on its poor quality and us never actively improving it. I wrote this package as a proof of concept, but never properly maintained it, and I'm sorry for that.To answer part of your original question: yes, it’s no problem to mix-and-match JavaScript libraries on the remote and host side of a remote-ui project.
You may not need any of this anymore, but we've just completely rewritten
remote-ui
in a way that may be interesting to you. It’s now entirely based on the DOM, and since Vue has good support for c…