mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-29 10:59:12 -04:00
24 lines
601 B
TypeScript
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,
|
|
});
|