17 lines
324 B
Plaintext
17 lines
324 B
Plaintext
@using ShadcnBlazor.Extras.Editors
|
|
|
|
@inherits Editor<string>
|
|
|
|
<Editor @ref="Editor" Language="EditorLanguage.None" InitialValue="@Value" />
|
|
|
|
@code
|
|
{
|
|
private Editor Editor;
|
|
|
|
public async Task SubmitAsync()
|
|
{
|
|
Value = await Editor.GetValueAsync();
|
|
await ValueChanged.InvokeAsync(Value);
|
|
}
|
|
}
|