2022-07-24 00:58:18 +02:00
|
|
|
import { TimerOutlined } from '@vicons/material';
|
|
|
|
import { defineTool } from '../tool';
|
2024-02-01 14:05:54 +01:00
|
|
|
import { translate } from '@/plugins/i18n.plugin';
|
2022-07-24 00:58:18 +02:00
|
|
|
|
|
|
|
export const tool = defineTool({
|
2024-02-01 14:05:54 +01:00
|
|
|
name: translate('tools.chronometer.title'),
|
2022-07-24 00:58:18 +02:00
|
|
|
path: '/chronometer',
|
2024-02-01 14:05:54 +01:00
|
|
|
description: translate('tools.chronometer.description'),
|
2022-07-24 00:58:18 +02:00
|
|
|
keywords: ['chronometer', 'time', 'lap', 'duration', 'measure', 'pause', 'resume', 'stopwatch'],
|
|
|
|
component: () => import('./chronometer.vue'),
|
|
|
|
icon: TimerOutlined,
|
|
|
|
});
|