2022-04-12 01:43:49 +02:00
|
|
|
import { Calendar } from '@vicons/tabler';
|
2022-06-01 23:52:21 +02:00
|
|
|
import { defineTool } from '../tool';
|
2022-04-12 01:43:49 +02:00
|
|
|
|
2022-06-01 23:52:21 +02:00
|
|
|
export const tool = defineTool({
|
2022-04-12 01:43:49 +02:00
|
|
|
name: 'Date-time converter',
|
|
|
|
path: '/date-converter',
|
|
|
|
description: 'Convert date and time into the various different formats',
|
2022-05-09 14:38:54 +02:00
|
|
|
keywords: ['date', 'time', 'converter', 'iso', 'utc', 'timezone', 'year', 'month', 'day', 'minute', 'seconde'],
|
2022-04-12 01:43:49 +02:00
|
|
|
component: () => import('./date-time-converter.vue'),
|
|
|
|
icon: Calendar,
|
2022-06-01 23:52:21 +02:00
|
|
|
});
|