getage() {
var birthdays = new Date(this.birthday.replace(/-/g, "/"));
var d = new Date();
var age =
d.getFullYear() -
birthdays.getFullYear() -
(d.getMonth() < birthdays.getMonth() ||
(d.getMonth() == birthdays.getMonth() &&
d.getDate() < birthdays.getDate())
?
: );
this.userAge = age;
},