Angular 2 how to display .pdf file -
i new in angular2.
i have pdf file want display on popup open time angular2 module or component can use show pdf file.
thanks.
have taken @ module https://www.npmjs.com/package/ng2-pdf-viewer?
remember declare in module so
import { browsermodule } '@angular/platform-browser'; import { ngmodule } '@angular/core'; import { formsmodule } '@angular/forms'; import { httpmodule } '@angular/http'; import { pdfviewercomponent } 'ng2-pdf-viewer'; import { appcomponent } './app.component'; @ngmodule({ declarations: [ appcomponent, pdfviewercomponent ], imports: [ browsermodule, formsmodule, httpmodule ], providers: [], bootstrap: [appcomponent] }) export class appmodule { }
Comments
Post a Comment