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

前端 未结 6 600
感情败类
感情败类 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 00:54

    Also you can use require function directly:

    import React, { Component } from 'react';
        
        class Download extends Component {
        
          render() {
        
            return (
              
            );
          }
        }
        
        export default Download;
    

提交回复
热议问题