mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-27 18:16:15 -04:00
feat(tool): date-time converter
This commit is contained in:
parent
11d8110226
commit
2d9cb209b3
6 changed files with 128 additions and 1 deletions
11
src/tools/date-time-converter/index.ts
Normal file
11
src/tools/date-time-converter/index.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
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,
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue