Frontend/Vue.js
[Vue] Date.now()를 통해 실시간 타임스탬프 만들기
▶ 글자를 변경할 때 마다 바뀌는 타임스탬프 [JavaScript] new Vue({ el: '#app', data: { name: 'Jinny', }, computed: { now () { return `Hi ${this.name}, now is ${Date.now()}` } } }) [HTML] {{now}} ▶ 동적으로 변경되는 타임스탬프 [JavaScript] new Vue({ el: '#app', data: { name: 'David', now: 0 }, mounted () { this.updateNow() setInterval(this.updateNow.bind(this) , 1000) }, methods: { updateNow() { this.now = Math.round(Date.now()..
2021. 7. 19. 22:18
최근댓글