按钮点击跳转主要使用onClick={()=>props.history.push("/admin/wecome")}
例子:
import React from 'react' import { Button} from 'antd'; function Article(props) { return ( <div> <Button type="primary" size="middle" onClick={()=>props.history.push("/admin/wecome")}>添加文章</Button> </div> ) } export default Article
文章评论(0)