mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-24 00:36:14 -04:00
feat(tool): qr-code generator
This commit is contained in:
parent
203b6a9d73
commit
5582d75927
8 changed files with 527 additions and 21 deletions
11
src/tools/qr-code-generator/index.ts
Normal file
11
src/tools/qr-code-generator/index.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { Qrcode } from '@vicons/tabler';
|
||||
import type { ITool } from './../Tool';
|
||||
|
||||
export const tool: ITool = {
|
||||
name: 'QR Code generator',
|
||||
path: '/qr-code-generator',
|
||||
description: 'Generate and download QR-code for an url or just a text and customize the background and foreground colors.',
|
||||
keywords: ['qr', 'code', 'generator', 'square', 'color', 'link', 'low', 'medium', 'quartile', 'high', 'transparent'],
|
||||
component: () => import('./qr-code-generator.vue'),
|
||||
icon: Qrcode,
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue