mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 13:29:13 -04:00
feat(new-tool): toml to json
This commit is contained in:
parent
9125dcf9c6
commit
c7d4f112c0
8 changed files with 114 additions and 1 deletions
13
src/tools/toml-to-json/index.ts
Normal file
13
src/tools/toml-to-json/index.ts
Normal file
|
@ -0,0 +1,13 @@
|
|||
import { defineTool } from '../tool';
|
||||
|
||||
import BracketIcon from '~icons/mdi/code-brackets';
|
||||
|
||||
export const tool = defineTool({
|
||||
name: 'TOML to JSON',
|
||||
path: '/toml-to-json',
|
||||
description: 'Parse and convert TOML to JSON.',
|
||||
keywords: ['toml', 'json', 'convert', 'online', 'transform', 'parser'],
|
||||
component: () => import('./toml-to-json.vue'),
|
||||
icon: BracketIcon,
|
||||
createdAt: new Date('2023-06-23'),
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue