在这里插入代码片
<div class="goodmaoing">{{ noontip }} !</div>
data() {
return {
noontip: '', // 上下午提示
}
created() {
this.mynoontip()
},
methods: {
mynoontip() {
const that = this
const date = new Date()
if (date.getHours() >= 0 && date.getHours() < 12) {
that.noontip = '上午好'
} else if (date.getHours() >= 12 && date.getHours() < 18) {
that.noontip = '下午好'
} else {
that.noontip = '晚上好'
}
},
}
``