blob: da6ba0c4a303a33d1b707a619fdcbc0ad92141e6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { World } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: translate('tools.mime-types.title'),
path: '/mime-types',
description: translate('tools.mime-types.description'),
keywords: ['mime', 'types', 'extension', 'content', 'type'],
component: () => import('./mime-types.vue'),
icon: World,
});
|