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.

VCalendarMonthly.js 1.0KB

123456789101112131415161718192021222324252627282930313233343536
  1. 'use strict';
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. require('../../../src/stylus/components/_calendar-weekly.styl');
  6. var _VCalendarWeekly = require('./VCalendarWeekly');
  7. var _VCalendarWeekly2 = _interopRequireDefault(_VCalendarWeekly);
  8. var _timestamp = require('./util/timestamp');
  9. function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
  10. /* @vue/component */
  11. // Mixins
  12. exports.default = _VCalendarWeekly2.default.extend({
  13. name: 'v-calendar-monthly',
  14. computed: {
  15. staticClass: function staticClass() {
  16. return 'v-calendar-monthly v-calendar-weekly';
  17. },
  18. parsedStart: function parsedStart() {
  19. return (0, _timestamp.getStartOfMonth)((0, _timestamp.parseTimestamp)(this.start));
  20. },
  21. parsedEnd: function parsedEnd() {
  22. return (0, _timestamp.getEndOfMonth)((0, _timestamp.parseTimestamp)(this.end));
  23. }
  24. }
  25. });
  26. // Util
  27. // Styles
  28. //# sourceMappingURL=VCalendarMonthly.js.map