2022-04-18 18:11:06 +02:00
|
|
|
import { DeviceDesktop } from '@vicons/tabler';
|
2022-05-25 23:20:51 +02:00
|
|
|
import type { ITool } from '../tool';
|
2022-04-18 18:11:06 +02:00
|
|
|
|
|
|
|
export const tool: ITool = {
|
|
|
|
name: 'Device information',
|
|
|
|
path: '/device-information',
|
|
|
|
description: 'Get information about your current device (screen size, pixel-ratio, user agent, ...)',
|
2022-04-22 23:31:40 +02:00
|
|
|
keywords: [
|
|
|
|
'device',
|
|
|
|
'information',
|
|
|
|
'screen',
|
|
|
|
'pixel',
|
|
|
|
'ratio',
|
|
|
|
'status',
|
|
|
|
'data',
|
|
|
|
'computer',
|
|
|
|
'size',
|
|
|
|
'user',
|
|
|
|
'agent',
|
|
|
|
],
|
2022-04-18 18:11:06 +02:00
|
|
|
component: () => import('./device-information.vue'),
|
|
|
|
icon: DeviceDesktop,
|
|
|
|
};
|