feat(tool): added token generator

This commit is contained in:
Corentin Thomasset 2022-04-04 00:25:29 +02:00
parent 25a8659786
commit 40dec52c84
No known key found for this signature in database
GPG key ID: DBD997E935996158
5 changed files with 189 additions and 46 deletions

View file

@ -1,3 +1,4 @@
import { ArrowsShuffle } from '@vicons/tabler';
import type { ITool } from './../Tool';
export const tool: ITool = {
@ -6,4 +7,5 @@ export const tool: ITool = {
description: 'Generate random string with the chars you want: uppercase or lowercase letters, numbers and/or symbols.',
keywords: ['token', 'random', 'string', 'alphanumeric', 'symbols', 'number', 'letters', 'lowercase', 'uppercase'],
component: () => import('./token-generator.tool.vue'),
icon: ArrowsShuffle,
};