You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I choose a custom name for my vue app via supplying the vue_app_name kwarg to Stipple.init, the Genie app doesn't work, because the generated HTML root element (as created by the page() function) still has the standard name. This results in a javascript error (#xyz not found)
I believe the problem lies with the vm() = root() function in Elements.jl, which does not refer to what was previously supplied to Stipple.init:
functionroot(app::M)::Stringwhere {M<:ReactiveModel}
Genie.Generator.validname(typeof(app) |> string)
end
The text was updated successfully, but these errors were encountered:
If I choose a custom name for my vue app via supplying the vue_app_name kwarg to Stipple.init, the Genie app doesn't work, because the generated HTML root element (as created by the page() function) still has the standard name. This results in a javascript error (#xyz not found)
I believe the problem lies with the vm() = root() function in Elements.jl, which does not refer to what was previously supplied to Stipple.init:
The text was updated successfully, but these errors were encountered: