mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 17:14:05 -08:00
15 lines
222 B
Vue
15 lines
222 B
Vue
|
<template functional>
|
||
|
<span>
|
||
|
{{$options.format(props.date)}}
|
||
|
</span>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { format } from 'timeago.js';
|
||
|
|
||
|
export default {
|
||
|
name: 'UpdatesPanel',
|
||
|
props: ['date'],
|
||
|
format,
|
||
|
};
|
||
|
</script>
|