This commit is contained in:
2021-07-02 00:50:21 +02:00
parent a4202dfabe
commit de421fb3d5
3 changed files with 107 additions and 26 deletions
+16
View File
@@ -0,0 +1,16 @@
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"
})
}
}
})