vue中获取当前时间年月日
时间: 2024-08-14 13:05:23 浏览: 43
vue实现获取当前时间,输出为年月日时分秒
在 Vue 中,你可以使用 JavaScript 的内置 `Date` 对象来获取当前的年月日。以下是一个简单的示例:
```html
<template>
<div>
当前日期:{{ currentDate }}
</div>
</template>
<script>
export default {
data() {
return {
currentDate: ''
}
},
created() {
this.currentDate = new Date().toLocaleDateString('yyyy-MM-dd');
}
}
</script>
```
在这个例子中,`created()` 生命周期钩子会在组件创建后立即执行,通过 `new Date().toLocaleDateString('yyyy-MM-dd')` 获取当前日期,并格式化为 '年-月-日' 格式。`toLocaleDateString` 函数会根据本地设置返回日期字符串。
阅读全文