quasar-framework
Version:
Simultaneously build desktop/mobile SPA websites & phone/tablet apps with VueJS
18 lines (17 loc) • 373 B
JavaScript
export default {
name: 'q-toolbar-title',
props: {
shrink: Boolean
},
render (h) {
return h('div', {
staticClass: 'q-toolbar-title',
'class': this.shrink ? 'col-auto' : null
}, [
this.$slots.default,
this.$slots.subtitle
? h('div', { staticClass: 'q-toolbar-subtitle' }, this.$slots.subtitle)
: null
])
}
}