0.0.0-beta.19 • Published 2 years ago

@cjy0208/mobile-components v0.0.0-beta.19

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

Mobile Components

移动端组件库

安装

yarn add @cjy0208/mobile-components
# 或者
npm install @cjy0208/mobile-components --save

按需加载

配合 babel-plugin-import 实现按需加载

// babel.config.js
module.exports = {
  plugins: [
    [
      'babel-plugin-import',
      {
        libraryName: '@cjy0208/mobile-components',
        libraryDirectory: 'lib/exports', // or 'es/exports'
        camel2DashComponentName: false,
        style: (name) => `${name}/style.less`, // or `${name}/style.css`
      },
      '@cjy0208/mobile-components',
    ],
  ],
}