@coreui/vue
Version:
UI Components Library for Vue.js
23 lines (19 loc) • 550 B
JavaScript
var vue = require('vue');
const CHeaderBrand = vue.defineComponent({
name: 'CHeaderBrand',
props: {
/**
* Component used for the root node. Either a string to use a HTML element or a component.
*/
as: {
type: String,
default: 'a',
},
},
setup(props, { slots }) {
return () => vue.h(props.as, { class: 'header-brand' }, slots.default && slots.default());
},
});
exports.CHeaderBrand = CHeaderBrand;
//# sourceMappingURL=CHeaderBrand.js.map
;