Update README.md

Add links to the docs.
This commit is contained in:
Zou Wei 2018-10-15 19:50:48 +08:00 committed by Steve Sanderson
parent 211ad636fd
commit 7918fe2c39
1 changed files with 4 additions and 4 deletions

View File

@ -9,12 +9,12 @@ Blazor is a .NET web framework that runs in any browser. You author Blazor apps
Blazor uses only the latest web standards. No plugins or transpilation needed. It runs in the browser on a real .NET runtime ([Mono](http://www.mono-project.com/news/2017/08/09/hello-webassembly/)) implemented in [WebAssembly](http://webassembly.org) that executes normal .NET assemblies. It works in older browsers too by falling back to an [asm.js](http://asmjs.org/) based .NET runtime.
Blazor will have all the features of a modern web framework, including:
- A component model for building composable UI
- Routing
- Layouts
- [A component model for building composable UI](https://blazor.net/docs/components/index.html)
- [Routing](https://blazor.net/docs/routing.html)
- [Layouts](https://blazor.net/docs/layouts.html)
- Forms and validation
- Dependency injection
- JavaScript interop
- [JavaScript interop](https://blazor.net/docs/javascript-interop.html)
- Live reloading in the browser during development
- Server-side rendering
- Full .NET debugging both in browsers and in the IDE