vue获取当前时间
时间: 2023-06-30 07:23:10 浏览: 161
vue获取当前时间.zip
你可以使用 JavaScript 中的 Date 对象来获取当前时间。在 Vue 组件中,你可以在一个方法中使用以下代码来获取当前时间:
```javascript
getCurrentTime() {
const now = new Date();
const hours = now.getHours();
const minutes = now.getMinutes();
const seconds = now.getSeconds();
return `${hours}:${minutes}:${seconds}`;
}
```
这个方法将返回一个字符串,表示当前时间的小时,分钟和秒数,例如 "12:30:45"。你可以在模板中使用这个方法来显示当前时间,如下所示:
```html
<div>{{ getCurrentTime() }}</div>
```
阅读全文