DRAB/Drab/Ui/components/PdfViewer.razor
2025-07-11 00:18:14 +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;
}