You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+53Lines changed: 53 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -216,6 +216,7 @@ List of 300 VueJS Interview Questions
216
216
|207|[#What are the types of formatting?](#what-are-the-types-of-formatting)|
217
217
|208|[What is custom formatting?](#what-is-custom-formatting)|
218
218
|209|[How do you handle Pluralization?](#how-do-you-handle-pluralization)|
219
+
|210|[How to implement DateTime localization?](#how-to-implement-date-time-localization)|
219
220
220
221
1.### What is VueJS?
221
222
**Vue.js** is an open-source, progressive Javascript framework for building user interfaces that aim to be incrementally adoptable. The core library of VueJS is focused on the `view layer` only, and is easy to pick up and integrate with other libraries or existing projects.
@@ -3722,5 +3723,57 @@ List of 300 VueJS Interview Questions
3722
3723
<p>one friend</p>
3723
3724
<p>10 friends</p>
3724
3725
```
3726
+
210. ### How to implement DateTime localization?
3727
+
You can localize the datetime with definition formats(e.g. short, long, etc).
3728
+
Lets follow below steps to localize date and time
3729
+
1. For example, you can define definition formats for English and Jappan locale as below
0 commit comments