UNPKG

quasar-framework

Version:

Simultaneously build desktop/mobile SPA websites & phone/tablet apps with VueJS

15 lines (14 loc) 241 B
export default { name: 'q-card-separator', props: { inset: Boolean }, render (h) { return h('div', { staticClass: 'q-card-separator', 'class': { inset: this.inset } }, [ this.$slots.default ]) } }