-1- Overview video
This 20 min video gives you a mile high view of Blazor covering component input and output, routing, HTTP and a little on Forms. It's a good place to start
-2- First introduction to Blazor
This article goes through all you need to know to get started but also gives you enough knowledge to keep building out your skills.
Learn how to build your first Blazor WebAssembly app in .Net Core 3.0
Chris Noring for .NET ・ Sep 26 '19
-3- JavaScript interop and Blazor
Sometimes you need to talk to JavaScript, even if you mostly will do C#. This shows how you can include an NPM package as part of your Blazor app.
Learn how YOU can use both C# and JavaScript in your Blazor app with the JavaScript interop
Chris Noring for .NET ・ Nov 9 '19
-4- Routing in Blazor
Routing is an important topic. This article covers different types of routing and also covers router and query parameters.
Top comments (3)
Nice, 😄.
stackoverflow.com/questions/607732...
2 Questions:
I think based on above post, we cannot do a alert using
C#
, we have to invokeIJSRuntime
. So how does thisIJSRuntime
does the alert ? does it convertsC#
toJavascript
and then runs in browser ?How is
Blazor
initial load time after release of.NET 5
? compared toAngular
andReact
, is it performant ?shudder