mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-27 10:06:16 -04:00
12 lines
436 B
TypeScript
12 lines
436 B
TypeScript
![]() |
import { Calendar } from '@vicons/tabler';
|
||
|
import type { ITool } from '../Tool';
|
||
|
|
||
|
export const tool: ITool = {
|
||
|
name: 'Date-time converter',
|
||
|
path: '/date-converter',
|
||
|
description: 'Convert date and time into the various different formats',
|
||
|
keywords: ['date', 'time', 'converter', 'iso', 'utc', 'timezone', 'year', 'mounth', 'day', 'minute', 'seconde'],
|
||
|
component: () => import('./date-time-converter.vue'),
|
||
|
icon: Calendar,
|
||
|
};
|