2024-10-27 10:54:45 -07:00
|
|
|
import { IconMath } from '@tabler/icons-vue';
|
2022-06-02 00:10:03 +02:00
|
|
|
import { defineTool } from '../tool';
|
2024-02-01 14:05:54 +01:00
|
|
|
import { translate } from '@/plugins/i18n.plugin';
|
2022-06-02 00:10:03 +02:00
|
|
|
|
|
|
|
export const tool = defineTool({
|
2024-02-01 14:05:54 +01:00
|
|
|
name: translate('tools.math-evaluator.title'),
|
2022-06-02 00:10:03 +02:00
|
|
|
path: '/math-evaluator',
|
2024-02-01 14:05:54 +01:00
|
|
|
description: translate('tools.math-evaluator.description'),
|
2022-06-02 00:10:03 +02:00
|
|
|
keywords: [
|
|
|
|
'math',
|
|
|
|
'evaluator',
|
2023-11-01 15:23:46 +01:00
|
|
|
'calculator',
|
|
|
|
'expression',
|
|
|
|
'abs',
|
2022-06-02 00:10:03 +02:00
|
|
|
'acos',
|
|
|
|
'acosh',
|
|
|
|
'acot',
|
|
|
|
'acoth',
|
|
|
|
'acsc',
|
|
|
|
'acsch',
|
|
|
|
'asec',
|
|
|
|
'asech',
|
|
|
|
'asin',
|
|
|
|
'asinh',
|
|
|
|
'atan',
|
|
|
|
'atan2',
|
|
|
|
'atanh',
|
|
|
|
'cos',
|
|
|
|
'cosh',
|
|
|
|
'cot',
|
|
|
|
'coth',
|
|
|
|
'csc',
|
|
|
|
'csch',
|
|
|
|
'sec',
|
|
|
|
'sech',
|
|
|
|
'sin',
|
|
|
|
'sinh',
|
2023-11-01 15:23:46 +01:00
|
|
|
'sqrt',
|
2022-06-02 00:10:03 +02:00
|
|
|
'tan',
|
|
|
|
'tanh',
|
|
|
|
],
|
|
|
|
component: () => import('./math-evaluator.vue'),
|
2024-10-27 10:54:45 -07:00
|
|
|
icon: IconMath,
|
2022-06-02 00:10:03 +02:00
|
|
|
});
|