Files
myprojplanet_vite/src/components/CTimeAgo/CTimeAgo.vue

20 lines
325 B
Vue
Raw Normal View History

2023-01-06 15:51:58 +01:00
<template>
<timeago
:datetime="datetime"
auto-update
:converter-options="{
includeSeconds: true,
addSuffix: true,
useStrict: false,
}"
:locale="mylocale"
/>
</template>
<script lang="ts" src="./CTimeAgo.ts">
</script>
<style lang="scss" scoped>
@import './CTimeAgo.scss';
</style>