You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
361 B
JavaScript
12 lines
361 B
JavaScript
var nowDate = new Date();
|
|
var year = nowDate.getFullYear();
|
|
var month = nowDate.getMonth() + 1 < 10 ? "0" + (nowDate.getMonth() + 1) :
|
|
nowDate.getMonth() + 1;
|
|
var day = nowDate.getDate() < 10 ? "0" + nowDate.getDate() : nowDate
|
|
.getDate();
|
|
var newDate = year + "-" + month + "-" + day;
|
|
var http = 'https://decaisoft.com:443'
|
|
export default {
|
|
newDate,http
|
|
}
|