mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 05:19:12 -04:00
44 lines
788 B
TypeScript
44 lines
788 B
TypeScript
import { IconMath } from '@tabler/icons-vue';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.math-evaluator.title'),
|
|
path: '/math-evaluator',
|
|
description: translate('tools.math-evaluator.description'),
|
|
keywords: [
|
|
'math',
|
|
'evaluator',
|
|
'calculator',
|
|
'expression',
|
|
'abs',
|
|
'acos',
|
|
'acosh',
|
|
'acot',
|
|
'acoth',
|
|
'acsc',
|
|
'acsch',
|
|
'asec',
|
|
'asech',
|
|
'asin',
|
|
'asinh',
|
|
'atan',
|
|
'atan2',
|
|
'atanh',
|
|
'cos',
|
|
'cosh',
|
|
'cot',
|
|
'coth',
|
|
'csc',
|
|
'csch',
|
|
'sec',
|
|
'sech',
|
|
'sin',
|
|
'sinh',
|
|
'sqrt',
|
|
'tan',
|
|
'tanh',
|
|
],
|
|
component: () => import('./math-evaluator.vue'),
|
|
icon: IconMath,
|
|
});
|