feat(new tools): iCal Generator/Merger/Parser

iCal file generator, merger and parser
This commit is contained in:
sharevb 2024-10-02 22:13:06 +02:00 committed by ShareVB
parent 1c35ac3704
commit 6896d03a3a
14 changed files with 610 additions and 21 deletions

View file

@ -0,0 +1,12 @@
import { CalendarEvent } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'ICAL Generator',
path: '/ical-generator',
description: 'Generate ICAL/ICS file from event infos',
keywords: ['ical', 'calendar', 'event', 'generator'],
component: () => import('./ical-generator.vue'),
icon: CalendarEvent,
createdAt: new Date('2024-08-15'),
});