1.4.5 • Published 11 months ago

cview-ui v1.4.5

Weekly downloads
-
License
ISC
Repository
-
Last release
11 months ago

cview-ui

cview-ui 是一套基于 Vue.js 的开源 UI 组件库,主要服务于 PC 界面的中后台产品。

安装

使用npm

npm i cview-ui --save

或使用yarn

yarn add cview-ui --save

main.js中如下配置:

import cview from 'cview-ui'
Vue.use(cview)

或使用cdn全局引入

<link rel="stylesheet" href="//unpkg.com/cview-ui/dist/cview.min.css">
<script type="text/javascript" src="//unpkg.com/cview-ui/dist/cview.min.js"></script>

或按需引用 借助插件babel-plugin-import可以实现按需加载组件,减少文件体积。首先安装,并在文件.babelrc中配置:

npm install babel-plugin-import --save-dev
// .babelrc
{
    "plugins": [
        ["import", {
                "libraryName": "cview-ui",
                "libraryDirectory": "src/components"
            }
        ]
    ]
}

然后这样按需引入组件,就可以减小体积了:

import { Button, Table, Divider, Col, Row, ButtonGroup } from 'cview-ui'
Vue.component('CvuButton', Button);
Vue.component('CvuDivider', Divider);
Vue.component('CvuCol', Col);
Vue.component('CvuRow', Row);
Vue.component('CvuButtonGroup', ButtonGroup);
Vue.component('CvuTable', Table);
1.4.5

11 months ago

1.4.4

2 years ago

1.4.3

2 years ago

1.4.2

2 years ago

1.4.1

2 years ago

1.4.0

2 years ago

1.3.7

2 years ago

1.2.8

2 years ago

1.3.6

2 years ago

1.2.7

2 years ago

1.3.5

2 years ago

1.2.6

2 years ago

1.2.5

2 years ago

1.3.3

2 years ago

1.2.4

2 years ago

1.3.2

2 years ago

1.2.3

2 years ago

1.3.1

2 years ago

1.2.2

2 years ago

1.3.0

2 years ago

1.2.1

2 years ago

1.3.9

2 years ago

1.3.8

2 years ago

1.2.9

2 years ago

1.2.0

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

1.1.9

2 years ago

1.1.8

2 years ago

1.0.9

2 years ago

1.1.7

2 years ago

1.0.8

2 years ago

1.1.6

2 years ago

1.1.5

2 years ago

1.1.4

2 years ago

1.1.3

2 years ago

1.1.2

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago