3 changed files with 26 additions and 1 deletions
@ -0,0 +1,14 @@ |
|||||
|
@page |
||||
|
@using EShopOnAbp.PublicWeb.Components.Basket |
||||
|
@model EShopOnAbp.PublicWeb.Pages.Basket |
||||
|
|
||||
|
@{ |
||||
|
|
||||
|
} |
||||
|
|
||||
|
<div class="col-lg-3"> |
||||
|
<h3 class="pt-5 pb-4 text-center">Your Basket</h3> |
||||
|
<div id="BasketArea"> |
||||
|
@await Component.InvokeAsync(typeof(BasketWidgetViewComponent)) |
||||
|
</div> |
||||
|
</div> |
||||
@ -0,0 +1,11 @@ |
|||||
|
using Microsoft.AspNetCore.Mvc.RazorPages; |
||||
|
|
||||
|
namespace EShopOnAbp.PublicWeb.Pages; |
||||
|
|
||||
|
public class Basket : PageModel |
||||
|
{ |
||||
|
public void OnGet() |
||||
|
{ |
||||
|
|
||||
|
} |
||||
|
} |
||||
Loading…
Reference in new issue