feat(tool): date-time converter

This commit is contained in:
Corentin Thomasset 2022-04-12 01:43:49 +02:00
parent 11d8110226
commit 2d9cb209b3
No known key found for this signature in database
GPG key ID: DBD997E935996158
6 changed files with 128 additions and 1 deletions

View 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,
};