13 lines
		
	
	
		
			477 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			477 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { IconStopwatch } from '@tabler/icons-vue';
 | |
| 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: IconStopwatch,
 | |
| });
 |