我想在Angular2基础项目中使用调度程序, 因为Angular2的Kendo-UI不包括调度功能。 有没有办法在angular2中使用jquery调度程序?
我已经在angular2中包含了jquery调度程序,并且一切顺利。 除了我不能通过来自调度程序工具提示的angular2 routerLink路由新页面。 如何解决此路由问题?
e.g。)
的index.html:
<script id="hoverTemplate" type="text/x-kendo-template">
<a class="waves-effect waves-blue" routerLink="/customer-view">Customer</a></script>
customer.routes.ts:
export const CustomerRoutes: Route[] = [{
path: 'customer-view',
component: CustomerViewComponent }];