mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-20 23:06:14 -04:00
feat: UuidGenerator
Signed-off-by: Corentin Thomasset <corentin.thomasset74@gmail.com>
This commit is contained in:
parent
407669def2
commit
77a6f20b2b
2 changed files with 55 additions and 0 deletions
|
@ -9,6 +9,7 @@ import FileToBase64 from "./routes/tools/FileToBase64";
|
|||
import TextCypher from "./routes/tools/TextCypher";
|
||||
import TextStats from "./routes/tools/TextStats";
|
||||
import BaseConverter from "./routes/tools/BaseConverter";
|
||||
import UuidGenerator from "./routes/tools/UuidGenerator";
|
||||
|
||||
Vue.use(VueRouter)
|
||||
|
||||
|
@ -24,6 +25,13 @@ const toolsComponents = [
|
|||
component: TokenGenerator,
|
||||
keywords: ['token', 'random', 'string', 'alphanumeric']
|
||||
},
|
||||
{
|
||||
icon: 'fa-key',
|
||||
text: 'Uuid generator',
|
||||
path: '/uuid-generator',
|
||||
component: UuidGenerator,
|
||||
keywords: ['token', 'v4', 'string', 'alphanumeric']
|
||||
},
|
||||
{
|
||||
icon: 'fa-font',
|
||||
text: 'Hash text',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue