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.

VTimeline.js 1.0KB

12345678910111213141516171819202122232425262728293031
  1. var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
  2. // Styles
  3. import '../../../src/stylus/components/_timeline.styl';
  4. import mixins from '../../util/mixins';
  5. // Mixins
  6. import Themeable from '../../mixins/themeable';
  7. export default mixins(Themeable
  8. /* @vue/component */
  9. ).extend({
  10. name: 'v-timeline',
  11. props: {
  12. alignTop: Boolean,
  13. dense: Boolean
  14. },
  15. computed: {
  16. classes: function classes() {
  17. return _extends({
  18. 'v-timeline--align-top': this.alignTop,
  19. 'v-timeline--dense': this.dense
  20. }, this.themeClasses);
  21. }
  22. },
  23. render: function render(h) {
  24. return h('div', {
  25. staticClass: 'v-timeline',
  26. 'class': this.classes
  27. }, this.$slots.default);
  28. }
  29. });
  30. //# sourceMappingURL=VTimeline.js.map