UNPKG

quasar-framework

Version:

Build responsive SPA, SSR, PWA, Hybrid Mobile Apps and Electron apps, all simultaneously using the same codebase

15 lines (14 loc) 278 B
export default { name: 'QItemSeparator', props: { inset: Boolean }, render (h) { return h('div', { staticClass: 'q-item-separator-component', 'class': { 'q-item-separator-inset-component': this.inset } }, this.$slots.default) } }