2023-05-16 23:12:37 +02:00
|
|
|
import { Camera } from '@vicons/tabler';
|
|
|
|
import { defineTool } from '../tool';
|
2024-02-01 14:05:54 +01:00
|
|
|
import { translate } from '@/plugins/i18n.plugin';
|
2023-05-16 23:12:37 +02:00
|
|
|
|
|
|
|
export const tool = defineTool({
|
2024-02-01 14:05:54 +01:00
|
|
|
name: translate('tools.camera-recorder.title'),
|
2023-05-16 23:12:37 +02:00
|
|
|
path: '/camera-recorder',
|
2024-02-01 14:05:54 +01:00
|
|
|
description: translate('tools.camera-recorder.description'),
|
2023-05-16 23:12:37 +02:00
|
|
|
keywords: ['camera', 'recoder'],
|
|
|
|
component: () => import('./camera-recorder.vue'),
|
|
|
|
icon: Camera,
|
|
|
|
createdAt: new Date('2023-05-15'),
|
|
|
|
});
|