nanruan
Version:
南软科技有限公司UI组件库
15 lines (12 loc) • 316 B
JavaScript
import button from "./button-group/btn.vue"
import theme from "./theme/index.css"
const components = {
install(Vue) {
Vue.component('nr-button', button)
}
}
if (typeof window !== 'undefined' && window.Vue) {
window.Vue.use(components)
}
export { theme }
export default components