2018-02-14 06:51:17 -06:00
|
|
|
<template>
|
|
|
|
<div class="mk-special-message">
|
|
|
|
<p v-if="m == 1 && d == 1">%i18n:common.tags.mk-special-message.new-year%</p>
|
|
|
|
<p v-if="m == 12 && d == 25">%i18n:common.tags.mk-special-message.christmas%</p>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
export default Vue.extend({
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
now: new Date()
|
|
|
|
};
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
d(): number {
|
2018-02-16 11:24:10 -06:00
|
|
|
return this.now.getDate();
|
2018-02-14 06:51:17 -06:00
|
|
|
},
|
|
|
|
m(): number {
|
2018-02-16 11:24:10 -06:00
|
|
|
return this.now.getMonth() + 1;
|
2018-02-14 06:51:17 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
.mk-special-message
|
|
|
|
&:empty
|
|
|
|
display none
|
|
|
|
|
|
|
|
> p
|
|
|
|
margin 0
|
|
|
|
padding 4px
|
|
|
|
text-align center
|
|
|
|
font-size 14px
|
|
|
|
font-weight bold
|
|
|
|
text-transform uppercase
|
|
|
|
color #fff
|
|
|
|
background #ff1036
|
|
|
|
|
|
|
|
</style>
|