@model VendorModel @inject IViewComponentSelector viewComponentSelector
@if (viewComponentSelector.SelectComponent("LazyLoadImage") != null) { @await Component.InvokeAsync("LazyLoadImage", new (string Key, string Value)[] { ("src", Model.PictureModel.ImageUrl), ("alt", Model.PictureModel.AlternateText), ("title", Model.PictureModel.Title) }) } else { @Model.PictureModel.AlternateText }

@Model.Name