diff options
author | 2023-05-16 23:12:37 +0200 | |
---|---|---|
committer | 2023-05-17 00:34:10 +0200 | |
commit | 34d8e5ce2ca5d7a27c19ee2cb704bbfd3a215b29 (patch) | |
tree | e5245057f91bf273e53d91b9caf34f050bac1bf8 /src/tools/camera-recorder/index.ts | |
parent | 8515c242647f41e90726da1e7b4efb7957c923c2 (diff) | |
download | it-tools-34d8e5ce2ca5d7a27c19ee2cb704bbfd3a215b29.tar.gz it-tools-34d8e5ce2ca5d7a27c19ee2cb704bbfd3a215b29.tar.zst it-tools-34d8e5ce2ca5d7a27c19ee2cb704bbfd3a215b29.zip |
feat(new tool): camera screenshot and recorder
Diffstat (limited to 'src/tools/camera-recorder/index.ts')
-rw-r--r-- | src/tools/camera-recorder/index.ts | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/tools/camera-recorder/index.ts b/src/tools/camera-recorder/index.ts new file mode 100644 index 0000000..3c5d11b --- /dev/null +++ b/src/tools/camera-recorder/index.ts @@ -0,0 +1,12 @@ +import { Camera } from '@vicons/tabler'; +import { defineTool } from '../tool'; + +export const tool = defineTool({ + name: 'Camera recorder', + path: '/camera-recorder', + description: 'Take a picture or record a video from your webcam or camera.', + keywords: ['camera', 'recoder'], + component: () => import('./camera-recorder.vue'), + icon: Camera, + createdAt: new Date('2023-05-15'), +}); |