feat(new tool): HDD Size Calculator

Fix #974
This commit is contained in:
sharevb 2024-04-28 12:30:03 +02:00 committed by ShareVB
parent 9eac9cb2a9
commit e46a5ec4d3
6 changed files with 82 additions and 6 deletions

View file

@ -0,0 +1,14 @@
import { DeviceDesktop } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'HDD calculator',
path: '/hdd-calculator',
description: 'Compute real storage space (binary) from HDD Capacity (decimal)',
keywords: ['hdd', 'calculator', 'size', 'conversion', 'binary', 'decimal',
'gb', 'mb', 'tb',
'gigabyte', 'gibibyte', 'megabyte', 'mebibyte', 'terabyte', 'tebibyte'],
component: () => import('./hdd-calculator.vue'),
icon: DeviceDesktop,
createdAt: new Date('2024-04-07'),
});