```java
methods: {
isDate(){
var data =new Date('2021-01-01');
console.log(data.getMonth());
}
},
mounted(){
this.isDate()
}

