bin-ui
Version:
基于 vue2.6 / vue-cli3 的 UI 组件库
14 lines (11 loc) • 306 B
JavaScript
import BIcon from './icon.vue'
import BIconSelect from './icon-select'
/* istanbul ignore next */
BIcon.install = function (Vue) {
Vue.component(BIcon.name, BIcon)
}
/* istanbul ignore next */
BIconSelect.install = function (Vue) {
Vue.component(BIconSelect.name, BIconSelect)
}
export default BIcon