Sharkey/src/client/app/desktop/views/widgets/timemachine.vue

29 lines
478 B
Vue
Raw Normal View History

2018-02-19 11:26:20 +02:00
<template>
<div class="mkw-timemachine">
<mk-calendar :design="props.design" @chosen="chosen"/>
</div>
</template>
<script lang="ts">
2018-02-24 17:18:09 +02:00
import define from '../../../common/define-widget';
2018-02-19 11:26:20 +02:00
export default define({
name: 'timemachine',
2018-02-21 08:30:03 +02:00
props: () => ({
2018-02-19 11:26:20 +02:00
design: 0
2018-02-21 08:30:03 +02:00
})
2018-02-19 11:26:20 +02:00
}).extend({
methods: {
chosen(date) {
this.$emit('chosen', date);
},
func() {
if (this.props.design == 5) {
this.props.design = 0;
} else {
this.props.design++;
}
}
}
});
</script>