Visualizar .pdf

import { CatFileService } from '@catrx/ui/utils';

@Component({...})
export class ExampleComponent {
  constructor(private fileService: CatFileService) {}
  
  viewPdf() {
    this.fileService.viewPdf({
      filename: 'example.pdf',
      type: 'application/pdf',
      base64: '[CONTEUDO DO ARQUIVO EM BASE64]'
    });
  }
}

Last updated