rudeshark.net/src/web/app/desktop/views/components/widgets/timemachine.vue

29 lines
481 B
Vue
Raw Normal View History

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