it-tools/src/tools/regex-memo/index.ts
steffenrapp bb7d703cc5 regex
2024-09-20 19:59:02 +00:00

13 lines
496 B
TypeScript

import { BrandJavascript } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: translate('tools.regex-memo.title'),
path: '/regex-memo',
description: translate('tools.regex-memo.description'),
keywords: ['regex', 'regular', 'expression', 'javascript', 'memo', 'cheatsheet'],
component: () => import('./regex-memo.vue'),
icon: BrandJavascript,
createdAt: new Date('2024-09-20'),
});