Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

VCardTitle.js 568B

1234567891011121314151617181920
  1. // Types
  2. import Vue from 'vue';
  3. /* @vue/component */
  4. export default Vue.extend({
  5. name: 'v-card-title',
  6. functional: true,
  7. props: {
  8. primaryTitle: Boolean
  9. },
  10. render: function render(h, _ref) {
  11. var data = _ref.data,
  12. props = _ref.props,
  13. children = _ref.children;
  14. data.staticClass = ('v-card__title ' + (data.staticClass || '')).trim();
  15. if (props.primaryTitle) data.staticClass += ' v-card__title--primary';
  16. return h('div', data, children);
  17. }
  18. });
  19. //# sourceMappingURL=VCardTitle.js.map