mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-10 16:15:01 -04:00
feat(new tools): Units Converter
All units, pressure, power, angle, area, energy, force, length, mass, volume units converter Many Units Converter: convert any unit string (ie 1d 3m) into best unit and selected target unit Fix #571
This commit is contained in:
parent
80e46c9292
commit
d1aca6acaf
26 changed files with 686 additions and 10 deletions
12
src/tools/length-converter/index.ts
Normal file
12
src/tools/length-converter/index.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
import { SquareHalf } from '@vicons/tabler';
|
||||
import { defineTool } from '../tool';
|
||||
|
||||
export const tool = defineTool({
|
||||
name: 'Length Units Converter',
|
||||
path: '/length-converter',
|
||||
description: 'Convert values from length units',
|
||||
keywords: ['length', 'converter'],
|
||||
component: () => import('./length-converter.vue'),
|
||||
icon: SquareHalf,
|
||||
createdAt: new Date('2024-08-15'),
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue