it-tools/src/tools/regex-memo/index.ts

14 lines
496 B
TypeScript
Raw Normal View History

import { BrandJavascript } from '@vicons/tabler';
import { defineTool } from '../tool';
2024-09-20 19:59:02 +00:00
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
2024-09-20 19:59:02 +00:00
name: translate('tools.regex-memo.title'),
path: '/regex-memo',
2024-09-20 19:59:02 +00:00
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'),
});