25 lines
		
	
	
		
			574 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			574 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { DeviceDesktop } from '@vicons/tabler';
 | |
| import { defineTool } from '../tool';
 | |
| import { translate } from '@/plugins/i18n.plugin';
 | |
| 
 | |
| export const tool = defineTool({
 | |
|   name: translate('tools.device-information.title'),
 | |
|   path: '/device-information',
 | |
|   description: translate('tools.device-information.description'),
 | |
|   keywords: [
 | |
|     'device',
 | |
|     'information',
 | |
|     'screen',
 | |
|     'pixel',
 | |
|     'ratio',
 | |
|     'status',
 | |
|     'data',
 | |
|     'computer',
 | |
|     'size',
 | |
|     'user',
 | |
|     'agent',
 | |
|   ],
 | |
|   component: () => import('./device-information.vue'),
 | |
|   icon: DeviceDesktop,
 | |
| });
 |