2019-04-17 15:58:15 +02:00
|
|
|
// Types
|
|
|
|
import Vue from 'vue';
|
|
|
|
/* @vue/component */
|
|
|
|
export default Vue.extend({
|
|
|
|
name: 'v-card-title',
|
|
|
|
functional: true,
|
|
|
|
props: {
|
|
|
|
primaryTitle: Boolean
|
|
|
|
},
|
|
|
|
render: function render(h, _ref) {
|
|
|
|
var data = _ref.data,
|
|
|
|
props = _ref.props,
|
|
|
|
children = _ref.children;
|
|
|
|
|
|
|
|
data.staticClass = ('v-card__title ' + (data.staticClass || '')).trim();
|
|
|
|
if (props.primaryTitle) data.staticClass += ' v-card__title--primary';
|
|
|
|
return h('div', data, children);
|
|
|
|
}
|
|
|
|
});
|
2019-06-04 14:29:48 +02:00
|
|
|
//# sourceMappingURL=VCardTitle.js.map
|