feat(new tool): PDF Encrypt

PDF Encrypter
This commit is contained in:
sharevb 2024-04-03 23:34:15 +02:00
parent 23b4dc84c8
commit 1b82da5b4b
8 changed files with 1584 additions and 150 deletions

View file

@ -0,0 +1,12 @@
import { Lock } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'Pdf Encrypt',
path: '/pdf-encrypt',
description: 'Encrypt and add protection to a PDF File',
keywords: ['pdf', 'encrypt'],
component: () => import('./pdf-encrypt.vue'),
icon: Lock,
createdAt: new Date('2024-01-09'),
});