mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 05:19:12 -04:00
13 lines
496 B
TypeScript
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'),
|
|
});
|