Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 1.08 KB

File metadata and controls

28 lines (18 loc) · 1.08 KB

Blazor WASM with GridMvcCore back-end (REST API)

Installation

Index

The GridBlazor component installation is straightforward. Just follow these steps:

  1. Create a new Blazor client-side solution using the Blazor WebAssembly App template

  2. Install the GridBlazor nuget package on the client project.

  3. Install the GridMvcCore nuget package on the server project.

  4. Add the following lines to the wwwroot/index.html file:

        <link href="_content/GridBlazor/css/gridblazor.min.css" rel="stylesheet" />
        <script src="_content/GridBlazor/js/gridblazor.js"></script>

    These files will be loaded from the GridBlazor nuget package, so it is not necessary to copy it to you project.

  5. If you are using Boostrap 3.x you will also need this line in the wwwroot/index.html file:

        <link href="~/_content/GridBlazor/css/gridblazor-bootstrap3.min.css" rel="stylesheet" />

Quick start ->