import * as lodash from 'lodash'; import Tab from './tab'; const tab = lodash.cloneDeep(Tab); export default lodash.merge(tab, { name: 'checkbox', inheritAttrs: false, props: { tag: { type: String, default: 'div', }, canClose: { type: Boolean, default: true, }, }, template: ` `, });