在vue2中,获取2023-05-25 00:00:00的年份
时间: 2023-08-18 13:07:50 浏览: 120
vue实现获取当前时间,输出为年月日时分秒
可以使用JavaScript的Date对象来获取年份,示例代码如下:
```javascript
const date = new Date('2023-05-25 00:00:00');
const year = date.getFullYear();
console.log(year); // 输出:2023
```
在Vue组件中,你可以将上述代码放在methods选项中,然后在模板中调用即可。例如:
```vue
<template>
<div>
<p>2023年的年份是:{{ getYear }}</p>
</div>
</template>
<script>
export default {
methods: {
getYear() {
const date = new Date('2023-05-25 00:00:00');
return date.getFullYear();
}
}
}
</script>
```
阅读全文