Update the entire data object of a Vue component instance by id (namespaced)
Source:R/vue_update.R
update_vue_data.RdUpdate the entire data object of a Vue component instance by id (namespaced)
Examples
if (FALSE) { # \dontrun{
# In a Shiny server function:
# Replace the data object of a calendar component
update_vue_data(session, "my_calendar", list(
value = "2025-12-31",
first_day_of_week = 3
))
} # }