$ npm i -S hilbert-vue-ui
import hilbertVue from 'hilbert-vue-ui'
import 'hilbert-vue-ui/lib/styles/hilbert-vue.css';
Vue.use(hilbertVue);
1.手动引入
import Flow from 'hilbert-vue-ui/lib/Flow'; // 加载 JS
import 'hilbert-vue-ui/lib/styles/Flow.css'; // 加载 CSS
2.使用babel-plugin-component
// .babelrc or babel-loader option
{
"plugins": [
['component', {
'libraryName': 'hilbert-vue-ui',
'libDir': 'lib',
'camel2Dash': false,
'styleLibrary': {
'name': 'styles',
'base': false,
'path': '[module].css',
},
}],
]
}
然后只需引入模块即可,无需单独引入样式。等同于上面手动引入的方式。
// babel-plugin-component 会帮助你加载 JS 和 CSS
import { Flow } from 'hilbert-vue-ui'
Vue.use(Flow);