hd cmps
v2.0.2)
Hongdu UI-Komponentenbibliothek --- basierend auf Element-UI
# Clone project
git clone
# Install dependencies
npm install
# 新建一个组件
npm run add
# 打开文档页面
npm run dev
# build for production with minification
npm run dist
# 全量发布组件
npm run pub
# 分别发布packages内的组件(待调试)
npm run pub:all
# 运行单元测试(单次)
npm run test
# 运行单元测试(会监听文件,多次运行测试)
npm run test:watch
|- hd-cmps
||-- dist
||-- lib
||-- build
||-- docs
||-- examples
||-- packages
|||--- hd-search
||||---- index.js
||||---- example.vue
||||---- README.md
||||---- src
|||||----- hd-search.vue
||-- src
||-- static
||-- test
|||--- unit
||||---- coverage
||||---- specs
Sie können das gesamte HD-CMPS oder bei Bedarf nur einige der Komponenten importieren.
import Vue from 'vue' ;
import App from './App.vue' ;
import HdCmps from 'hd-cmps' ;
import 'hd-cmps/dist/theme/index.css' ;
Vue . use ( HdCmps ) ;
new Vue ( {
el : '#app' ,
render : h => h ( App )
} ) ;
Mit Hilfe der Babel-Plugin-Komponente können wir nur die erforderlichen Komponenten einführen, um die Größe des Projekts zu reduzieren.
Installieren Sie zuerst die babel-plugin-Komponente:
npm install babel-plugin-component -D
Ändern Sie dann .babelrc in:
{
"presets" : [[ " es2015 " , { "modules" : false }]],
"plugins" : [
[
" component " ,
{
"libraryName" : " hd-cmps " ,
"styleLibrary" : {
"name" : " theme " ,
"base" : false
},
"libDir" : " dist "
}
]
]
}
Wenn Sie als Nächstes nur einige Komponenten wie HdSearch und HdTable einführen möchten, müssen Sie den folgenden Inhalt in main.js schreiben:
import Vue from 'vue' ;
import { HdSearch , HdTable } from 'hd-cmps' ;
import App from './App.vue' ;
Vue . component ( 'HdSearch' , HdSearch ) ;
Vue . component ( 'HdTable' , HdTable ) ;
/* 或写为
* Vue.use(HdSearch)
* Vue.use(HdTable)
*/
new Vue ( {
el : '#app' ,
render : h => h ( App )
} ) ;
Eine vollständige Liste der Komponenten finden Sie unter „components.json“.
Vielen Dank an Guangzhou Hongdu Information Technology Co., Ltd. für seine Unterstützung.
HD-Cmps ist MIT
Copyright (c) HDVON 2019-heute