vue 获取当前日期 星期天
时间: 2023-10-20 21:09:11 浏览: 208
vue获取当前时间.zip
可以使用 JavaScript 中的 Date 对象来获取当前日期和星期天,然后在 Vue 中进行渲染。具体代码如下:
```javascript
new Vue({
el: '#app',
data: {
currentDate: '',
currentDay: ''
},
mounted() {
this.getCurrentDate();
},
methods: {
getCurrentDate() {
const date = new Date();
const options = { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' };
this.currentDate = date.toLocaleDateString('zh-CN', options);
this.currentDay = date.toLocaleDateString('zh-CN', { weekday: 'long' });
}
}
})
```
在上面的代码中,我们使用了 Date 对象来获取当前日期和星期天,并将其存储在 Vue 实例的 data 属性中。然后,在 mounted 钩子函数中调用 getCurrentDate 方法来获取当前日期和星期天,并将其渲染到页面上。
阅读全文