Bolero icon indicating copy to clipboard operation
Bolero copied to clipboard

Bolero brings Blazor to F# developers with an easy to use Model-View-Update architecture, HTML combinators, hot reloaded templates, type-safe endpoints, advanced routing and remoting capabilities, and...

Results 86 Bolero issues
Sort by recently updated
recently updated
newest added

Title is pretty descriptive. I am using Elmish and am following the parent-child approach. When I initialize a specific sub-component I want that make a remoting request to populate the...

### **Overview** Add "functional"/"reactive" components similar to [React](https://reactjs.org/) using something like [Hooks](https://reactjs.org/docs/hooks-intro.html) for state management as an alternative to using Elmish. ### **Problem** Elmish is a very system for state...

I am new to Bolero. I need two separate layouts both with a separate menu system - one for "normal" web pages, the other for a CMS. That means two...

In the `0.18.*` era of Bolero, by default, contents of `rootComp` would prerender: ![image](https://user-images.githubusercontent.com/5226627/173487284-ac1ae085-062a-418d-bccc-9e3f9135c04f.png) This is not the case for `0.20.*`: ![image](https://user-images.githubusercontent.com/5226627/173487535-23fb73b7-dfd3-4d88-91d0-7ba1cc153b88.png) In `Songhay.Dashboard.Server/Startup.fs`: ```fsharp .AddBoleroHost(server = false, prerendered =...

bug

What would be the best way to organize several pages that use Bolero. Should we have a shared _bin directory?

question

It's great that it's so easy to swap building an application between Hosted WebAssembly & Server-side, the feature works really well. But it's a shame that it's an all or...

enhancement

I would like to handle a JavaScript custom event in Bolero using `on.event`. Here is the JavaScript code for my custom `throttlescroll` event: ```javascript MyCode = function () { const...

question

``` One or more errors occurred. (Deserialization of interface types is not supported. Type 'FSharp.Data.Runtime.BaseTypes.IJsonDocument'. Path: $ | LineNumber: 0 | BytePositionInLine: 1.) ``` JsonProvider from FSharp.Data needs this type...

I want do add a select sections with options, is not clear to me how to bind the different values for e.g. an enumeration type (or DU type) to a...

@Tarmil I was reading through this [post](https://tarmil.fr/article/2019/12/17/elmish-page-model) that you did for the F# advent calendar a while back and was just wondering whether the idea of a NestedProgramComponent was still...