UNPKG

@coreui/vue

Version:

UI Components Library for Vue.js

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