
antd
success-ladder
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
antd - 表单校验组件demo
import React, { Component } from 'react';import { Form, Input,Select } from "antd";const {Option} = Select;class ModelForm extends Component { render() { const { getFieldDecorator } = ...原创 2019-10-11 21:28:57 · 455 阅读 · 0 评论 -
antd - 常用封装方法之sliderEach
import React from "react";import { Menu , Icon } from 'antd';const { SubMenu } = Menu;export default (routes) => { let fn = (child) => { return <SubMenu key={ch...原创 2019-10-02 20:37:25 · 442 阅读 · 0 评论 -
React - 常用封装方法之routerEach
import React from "react";import {Route} from "react-router-dom";export const routerEach = (routes) => { const fn = (children) => { return children.map((item,index) => ( ...原创 2019-10-02 20:39:36 · 332 阅读 · 1 评论 -
antd - Login
html页import React, { Component } from 'react';import { Form, Icon, Input, Button } from 'antd';import { LoginWrapper } from "./styled";import {withRouter} from "react-router-dom";class Login ext...原创 2019-10-02 21:33:01 · 809 阅读 · 0 评论