mirror of https://github.com/abpframework/abp.git
7 changed files with 43 additions and 11 deletions
@ -1,8 +1,8 @@ |
|||
using Volo.Abp.AspNetCore.Mvc.UI.Bundling; |
|||
|
|||
namespace DashboardDemo.Dashboards |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI.Dashboards |
|||
{ |
|||
public class AbpBasicDashboardScriptContributor : BundleContributor |
|||
{ |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,20 @@ |
|||
using DashboardDemo.Pages.widgets; |
|||
using Volo.Abp.AspNetCore.Mvc.UI.Bundling; |
|||
using Volo.Abp.AspNetCore.Mvc.UI.Dashboards; |
|||
using Volo.Abp.Modularity; |
|||
|
|||
namespace DashboardDemo.Dashboards |
|||
{ |
|||
[DependsOn( |
|||
typeof(AbpBasicDashboardScriptContributor), |
|||
typeof(MyWidgetViewComponentScriptBundleContributor), |
|||
typeof(DemoStatisticsScriptContributor) |
|||
)] |
|||
public class MyDashboardScriptBundleContributor : BundleContributor |
|||
{ |
|||
public override void ConfigureBundle(BundleConfigurationContext context) |
|||
{ |
|||
|
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue