mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-23 08:16:16 -04:00
12 lines
486 B
TypeScript
12 lines
486 B
TypeScript
![]() |
import { DeviceDesktop } from '@vicons/tabler';
|
||
|
import type { ITool } from './../Tool';
|
||
|
|
||
|
export const tool: ITool = {
|
||
|
name: 'Device information',
|
||
|
path: '/device-information',
|
||
|
description: 'Get information about your current device (screen size, pixel-ratio, user agent, ...)',
|
||
|
keywords: ['device', 'information', 'screen', 'pixel', 'ratio', 'status', 'data', 'computer', 'size', 'user', 'agent'],
|
||
|
component: () => import('./device-information.vue'),
|
||
|
icon: DeviceDesktop,
|
||
|
};
|