@coreui/vue
Version:
UI Components Library for Vue.js
15 lines (12 loc) • 407 B
JavaScript
import { defineComponent, h } from 'vue';
const CBreadcrumb = defineComponent({
name: 'CBreadcrumb',
inheritAttrs: false,
setup(_, { slots, attrs }) {
return () => h('nav', {
'aria-label': 'breadcrumb',
}, h('ol', { class: ['breadcrumb', attrs.class] }, slots.default && slots.default()));
},
});
export { CBreadcrumb };
//# sourceMappingURL=CBreadcrumb.js.map