美文网首页
vue中实时显示当前日期时间

vue中实时显示当前日期时间

作者: 五更月下琉璃 | 来源:发表于2019-04-08 11:58 被阅读0次
效果图: TIM图片20190408115314.png

在IE上也是可以的。


TIM图片20200710120043.png

HTML部分:

<div class="time">{{date}}</div>

方法部分:

export default {
  name: 'test',
  data: function() {
    return {
      date: new Date(),
    };
  },
  created() {
  },
  mounted() {
    let that= this;
    this.timer = setInterval(function() {
      that.date = new Date().toLocaleString();
    });
  },
  beforeDestroy: function() {
    if (this.timer) {
      clearInterval(this.timer);
    }
  },
  methods: {
   
  }
};

相关文章

网友评论

      本文标题:vue中实时显示当前日期时间

      本文链接:https://www.haomeiwen.com/subject/qaduiqtx.html