Vue是一種前端框架,可幫助我們輕松地構建動態網頁。在Vue中,我們可以使用JavaScript來獲取當前時間。
new Date()
上面的代碼將返回一個日期對象,其中包含當前日期和時間。要獲取特定格式的時間,可以使用Vue的過濾器功能。
<p>{{ new Date() | formatDate }}</p>
在上面的代碼中,我們使用了一個過濾器“formatDate”,它可以將日期對象轉換為特定格式的字符串。以下是一個示例“formatDate”過濾器:
Vue.filter('formatDate', function(value) {
if (value) {
var date = new Date(value);
var year = date.getFullYear();
var month = date.getMonth() + 1;
var day = date.getDate();
var hour = date.getHours();
var minute = date.getMinutes();
var second = date.getSeconds();
return year + '-' + month + '-' + day + ' ' + hour + ':' + minute + ':' + second;
}
});
現在,我們可以在Vue模板中使用“{{ new Date() | formatDate }}”來獲取當前時間的特定格式。