Skip to content

Instantly share code, notes, and snippets.

@fsanggang
Created November 1, 2020 23:46
Show Gist options
  • Select an option

  • Save fsanggang/b5a25c512cd701dbe633e5d7749e96e0 to your computer and use it in GitHub Desktop.

Select an option

Save fsanggang/b5a25c512cd701dbe633e5d7749e96e0 to your computer and use it in GitHub Desktop.
// Pages/Post/Edit.razor
<div class="row">
<div class="col-6">
<input type="hidden" @bind-value="@post.Body" />
<textarea rows="20" class="form-control" id="body" @bind="@post.Body" @bind:event="oninput" />
</div>
<div class="col-6">
@((MarkupString) post.MarkupString)
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment