it-tools/src/tools/temperature-converter/index.ts
2024-02-01 14:05:54 +01:00

24 lines
601 B
TypeScript

import { Temperature } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: translate('tools.temperature-converter.title'),
path: '/temperature-converter',
description: translate('tools.temperature-converter.description'),
keywords: [
'temperature',
'converter',
'degree',
'Kelvin',
'Celsius',
'Fahrenheit',
'Rankine',
'Delisle',
'Newton',
'Réaumur',
'Rømer',
],
component: () => import('./temperature-converter.vue'),
icon: Temperature,
});