mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-02 21:08:12 +00:00
17 lines
392 B
TypeScript
17 lines
392 B
TypeScript
import { defineComponent } from 'vue';
|
|
|
|
export default defineComponent({
|
|
methods: {
|
|
localeDate(dateString: string) {
|
|
return new Date(dateString).toLocaleDateString("pl-PL", {
|
|
weekday: "long",
|
|
day: "numeric",
|
|
month: "2-digit",
|
|
year: "numeric",
|
|
hour:"2-digit",
|
|
minute: "2-digit"
|
|
})
|
|
}
|
|
}
|
|
})
|