mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-23 00:06:15 -04:00
13 lines
449 B
TypeScript
13 lines
449 B
TypeScript
import { Camera } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.camera-recorder.title'),
|
|
path: '/camera-recorder',
|
|
description: translate('tools.camera-recorder.description'),
|
|
keywords: ['camera', 'recoder'],
|
|
component: () => import('./camera-recorder.vue'),
|
|
icon: Camera,
|
|
createdAt: new Date('2023-05-15'),
|
|
});
|