React - How to open PDF file as a href target blank

前端 未结 6 601
感情败类
感情败类 2021-01-04 00:19

This mundane task fairly simple on static views, isn\'t complying with React.

Can someone advise me how to open a pdf file as a href on a new tab?

Here\'s my

6条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-04 01:02

    I had to make a function to open the pdf in the new tab actually :D

    import Pdf from "../../documents/resume.pdf";
    onResumeClick() {
      window.open(Pdf);
    }
    
    render() { 
    return (
       
          Resume
       
    )}
    

提交回复
热议问题