错误捕获,捕获组件级错误,显示错误信息
import ErrorBoundary from "ynw/react/ErrorBoundary";
<ErrorBoundary key={window.location.hash}>
<Switch>
<Redirect exact from="/" to="/home" />
<Route path="/home" component={Home} />
<Route path="/about" component={About} />
</Switch>
</ErrorBoundary>;