Description
A Kanban component for Angular 15use of ngx-drag-and-drop-lists.
NPM
Install drag-and-drop-lists using npm
npm install drag-and-drop-lists --save
Dependencies
No Dependencies for this module.
AddDndListModule into your KanbanModule class.
kanban.module.ts would look like this
import {NgModule} from '@angular/core';
import { DndListModule } from 'ngx-drag-and-drop-lists';
@NgModule({
imports: [DndListModule],
declarations: [KanbanComponent],
providers: [ ]
})
export class KanbanAppModule {
}
Refer following links for usage:
| Type | URL |
|---|---|
| Plugin Github Page | https://github.com/mattlewis92/angular-kanban |
| Template Page | https://modernadmin.evolvision.com/kanban |