[](https://badge.fury.io/js/mat-vs-table) [](https://angular.io/styleguide)
npm install mat-vs-table

#### Quick links
StackBlitz Template
add support for virtual scrolling in angular mat-table
mat-vs-table@8.0.0 Angular (requires* Angular 8 or 9)
mat-vs-table@0.1.1 Angular (requires* Angular 7)
Now install mat-vs-table via:
``shell`
npm install --save mat-vs-table
---
Once installed you need to import the main module:
`js`
import { MatVsTableModule } from 'mat-vs-table';
`js
import { MatVsTableModule } from 'mat-vs-table';
@NgModule({
declarations: [
AppComponent,
],
imports: [
MatVsTableModule,
MatTableModule,
MatSortModule,
BrowserAnimationsModule,
BrowserModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
`
`html
``