DRAB/Drab/Ui/Components/PdfViewer.razor
2025-07-11 10:50:46 +02:00

9 lines
259 B
Plaintext

<object data="@($"/pdf/{Filename}")"
style="width: 100%; height: 80vh; border: 1px solid gray"
type="application/pdf" width="100%" height="500px">
</object>
@code {
[Parameter]
public string Filename { get; set; } = string.Empty;
}