Define and implement mic-tester tool

This commit is contained in:
gornvan 2024-10-09 21:21:10 +02:00
parent f962c416a3
commit bd9afc7863
2 changed files with 133 additions and 0 deletions

View 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,
});