aboutsummaryrefslogtreecommitdiff
path: root/src/tools/user-agent-parser/index.ts
blob: 4d026145d6f2408ea4d7a6e623ff080f44f19b2d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { Browser } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';

export const tool = defineTool({
  name: translate('tools.user-agent-parser.title'),
  path: '/user-agent-parser',
  description: translate('tools.user-agent-parser.description'),
  keywords: ['user', 'agent', 'parser', 'browser', 'engine', 'os', 'cpu', 'device', 'user-agent', 'client'],
  component: () => import('./user-agent-parser.vue'),
  icon: Browser,
  createdAt: new Date('2023-04-06'),
});