@weblauncher/material-file-input
v0.14.3
Published
Material file input component module
Downloads
138
Readme
Material File Upload Input
This is an Angular Material component library for having a file input component.
Instalation
npm i @weblauncher/material-file-input
Usage
Import module into your project app.module.ts
or other sub-module:
import { MatFileInputModule } from '@weblauncher/material-file-input';
In your templates now you can add
<mat-form-field>
<mat-label>File</mat-label>
<mat-file-input [(ngModel)]="file"
placeholder="Select one file"></mat-file-input>
</mat-form-field>