mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-23 08:16:16 -04:00
12 lines
502 B
TypeScript
12 lines
502 B
TypeScript
import { Qrcode } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.qrcode-generator.title'),
|
|
path: '/qrcode-generator',
|
|
description: translate('tools.qrcode-generator.description'),
|
|
keywords: ['qr', 'code', 'generator', 'square', 'color', 'link', 'low', 'medium', 'quartile', 'high', 'transparent'],
|
|
component: () => import('./qr-code-generator.vue'),
|
|
icon: Qrcode,
|
|
});
|