20 lines
325 B
Vue
20 lines
325 B
Vue
|
|
<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>
|