В App.razor в разделе заголовка я добавил:
Код: Выделить всё
Код: Выделить всё
Код: Выделить всё
Код: Выделить всё
private BlazoredTextEditor textEditor;
private string editorContent;
private async Task GetEditorContent()
{
editorContent = await textEditor.GetHTML();
Console.WriteLine($"Editor Content: {editorContent}");
}
private async Task SetEditorContent()
{
await textEditor.LoadHTMLContent("
This is preloaded content!
");
}
Подробнее здесь: https://stackoverflow.com/questions/797 ... s-expected
Мобильная версия