mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-10 08:05:00 -04:00
Define and implement mic-tester tool
This commit is contained in:
parent
f962c416a3
commit
bd9afc7863
2 changed files with 133 additions and 0 deletions
12
src/tools/mic-tester/index.ts
Normal file
12
src/tools/mic-tester/index.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
import { Microphone } from '@vicons/tabler';
|
||||
import { defineTool } from '../tool';
|
||||
import { translate } from '@/plugins/i18n.plugin';
|
||||
|
||||
export const tool = defineTool({
|
||||
name: translate('tools.mic-tester.title'),
|
||||
path: '/mic-tester',
|
||||
description: translate('tools.mic-tester.description'),
|
||||
keywords: ['mic', 'microphone', 'test', 'check', 'troubleshoot', 'sound'],
|
||||
component: () => import('./mic-tester.vue'),
|
||||
icon: Microphone,
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue