0👍
You need to format Date object to convert it to string:
SimpleDateFormat dateFormat_ddMMMMMyyyy = new SimpleDateFormat("dd MMMM yyyy", Locale.getDefault());
Date date=new Date();
String formattedDate=dateFormat_ddMMMMMyyyy.format(date);
- [Vuejs]-How to validate a field using a custom rule on vee-validate version 3
- [Vuejs]-How can i make a responsive navbar design for my a vuetify app
Source:stackexchange.com