Skip to content

Instantly share code, notes, and snippets.

@Mirch
Created January 12, 2019 21:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mirch/71eac6492759ace5ff2c726f30e20bea to your computer and use it in GitHub Desktop.
Save Mirch/71eac6492759ace5ff2c726f30e20bea to your computer and use it in GitHub Desktop.
@page "/search/{SearchTerm}"
<p>Searching for `@SearchTerm`</p>
<Feed Filter="@SearchTerm" />
@functions {
protected override void OnParametersSet()
{
this.StateHasChanged();
}
[Parameter]
private string SearchTerm { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment