您当前的位置: 首页 > 

【03】

暂无认证

  • 1浏览

    0关注

    196博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

配置antd-mobal按需引入

【03】 发布时间:2020-08-22 19:25:38 ,浏览量:1

暴露配置文件

请查阅相关文章 https://web03.cn/blog/152

下载 babel-plugin-import
npm install babel-plugin-import --save-dev

文档地址 https://github.com/ant-design/babel-plugin-import

修改package.json

修改前

  "babel": {
    "presets": [
      "react-app"
    ]
  }

修改后

  "babel": {
    "presets": [
      "react-app"
    ],
    "plugins": [
      ["import", { "libraryName": "antd-mobile", "libraryDirectory": "es","style": "css" }]
    ]
  }
使用组件
import React,{Component} from 'react'
import { Button, List } from 'antd-mobile';
export default class  extends Component{
    constructor(props){
        super(props)
        this.state={
        }
    }
    render (){
        return (
          
            
              Regional manager
              
                Can be collected, refund, discount management, view data and other operations
              
            
            
              Regional manager
              
                Can be collected, refund, discount management, view data and other operations
              
            
          
        )
    }
}

如发现样式变迷你了

需要在html中加入meta


正常效果

关注
打赏
1657344724
查看更多评论
立即登录/注册

微信扫码登录

0.0378s