naive-ui/packages/common/Checkbox/index.js

11 lines
285 B
JavaScript
Raw Normal View History

/* istanbul ignore file */
2019-12-04 18:43:55 +08:00
import NCheckbox from './src/Checkbox.vue'
2019-08-06 17:48:39 +08:00
import NCheckboxGroup from './src/CheckboxGroup.vue'
2019-06-13 19:17:41 +08:00
NCheckbox.install = function (Vue) {
Vue.component(NCheckbox.name, NCheckbox)
2019-08-06 17:48:39 +08:00
Vue.component(NCheckboxGroup.name, NCheckboxGroup)
2019-06-13 19:17:41 +08:00
}
export default NCheckbox