1.3.1 • Published 3 years ago

tools-ui v1.3.1

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

tools-ui

安装

npm install tools-ui or yarn add tools-ui

全量导入

import TUI from 'tools-ui' // 引入组件库
import 'tools-ui/styles/index.css' // 引入整个组件库的样式文件

Vue.use(TUI)

按需加载

import { TButton } from 'tools-ui'
Vue.use(TButton)

安装babel-plugin-component

在根目录新建.babelrc

{
  'plugins':
    [
    [
      'component',
      {
        libraryName: 'tools-ui', // 组件库的名字
        camel2Dash: true, // 是否把驼峰转换成xx-xx的写法
        styleLibrary: {
          base: false, // 是否每个组件都默认引用base.css
          name: 'styles' // css目录的名字
        }
      }
    ]
  ]
}
1.3.1

3 years ago

1.1.7

3 years ago

1.1.6

3 years ago

1.1.5

3 years ago

1.1.4

3 years ago

1.1.3

3 years ago

1.1.2

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.8

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.0

3 years ago