Vue.jsを使い、現在の時刻を表示する方法

Vue.jsを使い、現在の時刻を表示する方法 | This section describes how to use Vue.js to display the current time.

{{ now }}

 
HTML <div id=”app”>
<p>{{ now }}</p>
<button v-on:click=”time”>現在時刻を表示する</button>
</div>
JavaScript var app = new Vue({
el : “#app”,
data : {
now : “00:00:00”
},
methods: {
time: function(e){
var date = new Date();
this.now = date.getHours() + “:” + date.getMinutes() + “:” + date.getSeconds();
}
}
});


わからないことはプロフェッショナルから学ぶのが一番

キャリアアップに必要なスキルを取得しよう。

オンラインで受講ができるスクールですので、全国どこからでも。