摘要: 空元素 JSX 允许空的根元素,从而打破深嵌套。ReactRouter.HashRouter等组件都是空元素实现的。 return ( < > < > <div></div> <div></div> </> </> ); import * as React from 'react'; import 阅读全文
posted @ 2021-01-15 17:57 develon 阅读(452) 评论(0) 推荐(1) 编辑
摘要: 问题 我在解析在接口声明中找到的TypeScript语法时遇到了麻烦。 interface FormattingOptions { tabSize: number; insertSpaces: boolean; [key: string]: boolean | number | string; } 阅读全文
posted @ 2021-01-15 17:21 develon 阅读(3727) 评论(1) 推荐(0) 编辑
摘要: Install yarn add react-router-dom import: import * as ReactRouter from 'react-router-dom'; 路由器 - ReactRouter.Router 路由器主要分两种模式:history和hash,其中ReactRou 阅读全文
posted @ 2021-01-15 11:08 develon 阅读(165) 评论(0) 推荐(0) 编辑