美文网首页
react 第七章——react-ui

react 第七章——react-ui

作者: 定格r | 来源:发表于2019-07-28 17:24 被阅读0次

    1.最流行的开源 React UI 组件库

    (1) material-ui(国外)

    1. 官网: http://www.material-ui.com/#/

    2. github: https://github.com/callemall/material-ui

    (2) ant-design(国内蚂蚁金服)

    1. PC官网: https://ant.design/index-cn

    2. 移动官网: https://mobile.ant.design/index-cn

    3. Github: https://github.com/ant-design/ant-design/

    4. Github: https://github.com/ant-design/ant-design-mobile/

    2.ant-design-mobile使用入门

    2.1、使用create-react-app创建react应用

    npm install create-react-app -g
    create-react-app antm-demo
    cd antm-demo
    npm start

    2.2、搭建antd-mobile的基本开发环境

    1)下载
    npm install antd-mobile --save

    2.3 实现按需打包

    1)下载依赖包
    npm install react-app-rewired babel-plugin-import --save-dev

    2)修改默认配置

    • package.json:
    "scripts": {
      "start": "react-app-rewired start",
      "build": "react-app-rewired build",
      "test": "react-app-rewired test --env=jsdom"
    }
    
    • config-overrides.js
    const {injectBabelPlugin} = require('react-app-rewired');
    module.exports = function override(config, env) {
      config = injectBabelPlugin(['import', {libraryName: 'antd-mobile', style: 'css'}], config);
      return config;
    };
    

    相关文章

      网友评论

          本文标题:react 第七章——react-ui

          本文链接:https://www.haomeiwen.com/subject/whsprctx.html