mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 13:29:13 -04:00
feat(new tools): iCal Generator/Merger/Parser
iCal file generator, merger and parser
This commit is contained in:
parent
1c35ac3704
commit
6896d03a3a
14 changed files with 610 additions and 21 deletions
12
src/tools/ical-parser/index.ts
Normal file
12
src/tools/ical-parser/index.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
import { CalendarEvent } from '@vicons/tabler';
|
||||
import { defineTool } from '../tool';
|
||||
|
||||
export const tool = defineTool({
|
||||
name: 'ICAL File Parser',
|
||||
path: '/ical-parser',
|
||||
description: 'Parse ICAL/ICS file to event display',
|
||||
keywords: ['ical', 'ics', 'calendar', 'parser'],
|
||||
component: () => import('./ical-parser.vue'),
|
||||
icon: CalendarEvent,
|
||||
createdAt: new Date('2024-08-15'),
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue