mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-28 18:46:15 -04:00
12 lines
476 B
TypeScript
12 lines
476 B
TypeScript
import { TimerOutlined } from '@vicons/material';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.chronometer.title'),
|
|
path: '/chronometer',
|
|
description: translate('tools.chronometer.description'),
|
|
keywords: ['chronometer', 'time', 'lap', 'duration', 'measure', 'pause', 'resume', 'stopwatch'],
|
|
component: () => import('./chronometer.vue'),
|
|
icon: TimerOutlined,
|
|
});
|