Answers for "angular router interview questions"

0

angular router interview questions

const routes: Routes = [
  {
    path: 'customers',
    loadChildren: () => import('./customers/customers.module').then(module => module.CustomersModule)
  },
  {
    path: 'orders',
    loadChildren: () => import('./orders/orders.module').then(module => module.OrdersModule)
  },
  {
    path: '',
    redirectTo: '',
    pathMatch: 'full'
  }
];
Posted by: Guest on December-04-2020
0

angular router interview questions

In Angular, directives refer to the attributes that allow users to write new HTML syntax for their applications. The directives are executed when the Angular compiler finds them in the DOM. There are three directives supported by Angular – Component Directives, Attribute Directives, and Structural Directives.

Posted by: company bench on February-19-2024

Code answers related to "angular router interview questions"

Code answers related to "Javascript"

Browse Popular Code Answers by Language