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">
|
2018-02-24 16:18:09 +01:00
|
|
|
import define from '../../../common/define-widget';
|
2018-02-19 10:26:20 +01:00
|
|
|
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>
|