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 735B

12345678910111213141516171819202122
  1. // Styles
  2. import '../../../src/stylus/components/_calendar-weekly.styl';
  3. // Mixins
  4. import VCalendarWeekly from './VCalendarWeekly';
  5. // Util
  6. import { parseTimestamp, getStartOfMonth, getEndOfMonth } from './util/timestamp';
  7. /* @vue/component */
  8. export default VCalendarWeekly.extend({
  9. name: 'v-calendar-monthly',
  10. computed: {
  11. staticClass: function staticClass() {
  12. return 'v-calendar-monthly v-calendar-weekly';
  13. },
  14. parsedStart: function parsedStart() {
  15. return getStartOfMonth(parseTimestamp(this.start));
  16. },
  17. parsedEnd: function parsedEnd() {
  18. return getEndOfMonth(parseTimestamp(this.end));
  19. }
  20. }
  21. });
  22. //# sourceMappingURL=VCalendarMonthly.js.map