blob: 33c5b2f1207cd5b2d75a3995d8ff5c3af245d064 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import { Percentage } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: translate('tools.percentage-calculator.title'),
path: '/percentage-calculator',
description: translate('tools.percentage-calculator.description'),
keywords: ['percentage', 'calculator', 'calculate', 'value', 'number', '%'],
component: () => import('./percentage-calculator.vue'),
icon: Percentage,
createdAt: new Date('2023-06-18'),
});
|