fix(dependency) Replace @vicons/tabler with @tabler/icons-vue

This commit is contained in:
chadmin 2024-10-27 10:54:45 -07:00
parent 0b1b98f93e
commit b77138181a
118 changed files with 295 additions and 312 deletions

View file

@ -1,4 +1,4 @@
import { Lock } from '@vicons/tabler';
import { IconLock } from '@tabler/icons-vue';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
@ -8,6 +8,6 @@ export const tool = defineTool({
description: translate('tools.encryption.description'),
keywords: ['cypher', 'encipher', 'text', 'AES', 'TripleDES', 'Rabbit', 'RC4'],
component: () => import('./encryption.vue'),
icon: Lock,
icon: IconLock,
redirectFrom: ['/cypher'],
});