extension-examples
extension-examples copied to clipboard
Vue widget
I am trying to create a "vue-widget" similar to the existing "react-widget".
The only reference I found is this repo: studyhub-co/jupyterlab_vue
Which is commented on this discourse.jupyter.org thread.
Questions:
- It is 3 years old. Has much changed ? Do they have the good approach ? or do recommend otherwise ?
- In particular, I see they use a webpack config. But how does it compare with that used by
jlpm build
? I cannot see it in thereact-widget
repo, so cannot compare and fear overriding it blindly is not satisfactory. - Nowadays, building vuejs apps is done with vite, not
webpack
. Could I build thevue
component withvite
and use the standardjlpm build
after ? Or is it a bad idea ? - Any other thought on the subject ?
@jtpio this is the issue I mentionned.
Just created a PR (not working) to show the current state of my failed attempt: PR 233
Thanks @oscar6echo :+1:
judt jumping here: is this corresponding to your needs ?
https://github.com/widgetti/ipyvue
Well this is an ipywidget, with js based on vue, while here the objective is to build a jupyterlab extension 'vue-widget' similar to the example react-widget.
No python involved.