react中使用ts配置路由时报错:Could not find a declaration file for module ‘react-router-dom‘

react中使用ts配置路由时报错:Could not find a declaration file for module ‘react-router-dom’

原来引入,会报错Could not find a declaration file for module ‘react-router-dom’:

import {Router,Route,Switch,Redirect} from 'react-router-dom';

解决方法:

const {Router,Route,Switch,Redirect} = require('react-router-dom');

你可能感兴趣的:(react,TS,react)