feat(new-tool): added chronometer

This commit is contained in:
Corentin Thomasset
2022-07-24 00:58:18 +02:00
parent 1c7257eeb0
commit 130031c225
5 changed files with 74 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import { TimerOutlined } from '@vicons/material';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'Chronometer',
path: '/chronometer',
description: 'Monitor the duration of a thing. Basically a chronometer with simple chronometer features.',
keywords: ['chronometer', 'time', 'lap', 'duration', 'measure', 'pause', 'resume', 'stopwatch'],
component: () => import('./chronometer.vue'),
icon: TimerOutlined,
});