第五章、react高级
摘要:####十一、AntDesign组件库 #####1、react中添加class-使用第三方库classnames import React, {PureComponent} from "react"; // 安装:npm i -S classnames import classNames from
阅读全文
flex布局处理文本溢出
摘要:<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>flex布局处理文本溢出</title> <style> .container { display: flex; } .left, .right { flex:
阅读全文
第四章、react高级
摘要:####九、高阶组件和组件补充 #####1、认识高阶组件 import React from 'react'; import ReactDOM from 'react-dom/client'; import App from './layout/App'; const root = ReactDO
阅读全文
第三章、react高级
摘要:####七、setState详细解析和React性能优化 #####1、setState异步更新 import React from "react"; function Home(props) { return <h1>{props.message}</h1> } export default cl
阅读全文