vueR
vueR copied to clipboard
vue.js for R
vue 3
Hi, sorry to bother @timelyportfolio but any attempt to configure vueR in order to make it working with the new vue 3 release ? Best. Fodil.
I have always wondered with both `vue` or `mobx` + `Shiny` how our workflows/architecture might change if Shiny JavaScript state in `Shiny.shinyapp.$inputValues` was reactive instead of a plain object. In...
Playing around and here is a quick example. In reality, crosstalk can be subsumed by `Vue` as simply a shared, reactive state mechanism. ### with crosstalk api ``` library(vueR) library(crosstalk)...
`reactable` has an underappreciated `WidgetContainer` that handles `htmlwidgets` (see [lines](https://github.com/glin/reactable/blob/0e269589bd4ff88e8e5eff0be2847257b470c106/srcjs/WidgetContainer.js) ). I think `vueR` should have a similar structure but without the `tags` for data and options. Here is a...
I often wonder why does Shiny manage UI state from R instead of UI state (especially state that does not affect/require R) being managed in JavaScript. If we pursue this...
In `reactR` we have a [helper](https://github.com/react-R/reactR/blob/master/srcjs/input.js) / [template](https://github.com/react-R/reactR/blob/master/R/scaffold_input.R) for creating Shiny-based `react` inputs. This [article](https://react-r.github.io/reactR/articles/intro_inputs.html) explains how to use the tools. I think providing similar tools in `vueR` would be...
is it possible to use vueR to reproduce this example? https://www.raymondcamden.com/2018/04/19/an-example-of-the-async-clipboard-api-with-vuejs
Thanks for this great package. How can one link a reactive vueR variable to select topojson properties in leaflet? I tried the following example. The preselection `incidents` is working, but...
As a shiny enthusiast, I am learning vue. Thanks to vueR for letting us see the possibility of developing new shiny components based on shiny and vueR! To make it...