tedwards-flf

Results 3 comments of tedwards-flf

I would also very much like to know how to do this. I am able to define data and methods in the script tag of the vuetify template; I started...

> You could import libraries with requirejs: > > ```js > export default { > methods: { > updatePlot() { > requirejs(['https://cdn.plot.ly/plotly-1.58.4.min.js'], (Plotly) => { > Plotly.react(...) > }) >...

> Ah, yes, in Jupyter Lab requirejs is not available (in the classic notebook and in Voila it is), you could load it yourself: > > ```js > ... >...