天天看點

REACT_react使用antd-mobile UI架構

安裝

npm install antd-mobile --save

public/index.html

<script src="https://as.alipayobjects.com/g/component/fastclick/1.0.6/fastclick.js"></script>
  <script>
    if ('addEventListener' in document) {
      document.addEventListener('DOMContentLoaded', function() {
        FastClick.attach(document.body);
      }, false);
    }
    if(!window.Promise) {
      document.writeln('<script src="https://as.alipayobjects.com/g/component/es6-promise/3.2.2/es6-promise.min.js"'+'>'+'<'+'/'+'script>');
    }
</script>
           

index.js

使用

import { Button } from 'antd-mobile';

<Button type="primary">primary</Button>
           

繼續閱讀