GridStack Angular Library - v12.3.3
    Preparing search index...

    Class GridstackModule

    Use GridstackComponent and GridstackItemComponent as standalone components instead.

    This NgModule is provided for backward compatibility but is no longer the recommended approach. Import components directly in your standalone components or use the new Angular module structure.

    // Preferred approach - standalone components
    @Component({
    selector: 'my-app',
    imports: [GridstackComponent, GridstackItemComponent],
    template: '<gridstack></gridstack>'
    })
    export class AppComponent {}

    // Legacy approach (deprecated)
    @NgModule({
    imports: [GridstackModule]
    })
    export class AppModule {}
    Index

    Constructors

    Constructors