Introduction
Installation
npm install ngx-crudSetup
import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http';
import { NgModule } from '@angular/core';
import { CrudModule } from 'ngx-crud';
@NgModule(
{
imports:
[
CrudModule
],
providers:
[
provideHttpClient(withInterceptorsFromDi())
]
})
export class AppModule
{
}Usage
Playground
Last updated