2022-04-14 18:18:15 +02:00
|
|
|
import { Qrcode } from '@vicons/tabler';
|
2022-06-01 23:52:21 +02:00
|
|
|
import { defineTool } from '../tool';
|
2024-02-01 14:05:54 +01:00
|
|
|
import { translate } from '@/plugins/i18n.plugin';
|
2022-04-14 18:18:15 +02:00
|
|
|
|
2022-06-01 23:52:21 +02:00
|
|
|
export const tool = defineTool({
|
2024-02-01 14:05:54 +01:00
|
|
|
name: translate('tools.qrcode-generator.title'),
|
2022-04-16 10:10:21 +02:00
|
|
|
path: '/qrcode-generator',
|
2024-02-01 14:05:54 +01:00
|
|
|
description: translate('tools.qrcode-generator.description'),
|
2022-04-14 18:18:15 +02:00
|
|
|
keywords: ['qr', 'code', 'generator', 'square', 'color', 'link', 'low', 'medium', 'quartile', 'high', 'transparent'],
|
|
|
|
component: () => import('./qr-code-generator.vue'),
|
|
|
|
icon: Qrcode,
|
2022-06-01 23:52:21 +02:00
|
|
|
});
|