-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add WeatherDetail and inline z-index style (not needed for instructio…
…nal commit)
- Loading branch information
1 parent
bfd0a36
commit ec36bb8
Showing
3 changed files
with
23 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
demo/aspnetcore6.0/v4/BlazorTransitionableRouteDemoServer/Pages/WeatherDetail.razor
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
@page "/weatherdetail/{Date}/{Temp}/{Summary}" | ||
|
||
<h3>WeatherDetail</h3> | ||
|
||
<p>Date: @Date</p> | ||
<p>Temp: @Temp</p> | ||
<p>Summary: @Summary</p> | ||
|
||
@code { | ||
[Parameter] | ||
public string Date { get; set; } | ||
|
||
[Parameter] | ||
public string Temp { get; set; } | ||
|
||
[Parameter] | ||
public string Summary { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters