UNPKG

@coreui/vue

Version:

UI Components Library for Vue.js

11 lines (8 loc) 257 B
import { defineComponent, h } from 'vue' const CSidebarFooter = defineComponent({ name: 'CSidebarFooter', setup(_, { slots }) { return () => h('div', { class: 'sidebar-footer' }, slots.default && slots.default()) }, }) export { CSidebarFooter }