13 lines
		
	
	
		
			529 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			529 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { AlignJustified } from '@vicons/tabler';
 | |
| import { defineTool } from '../tool';
 | |
| import { translate } from '@/plugins/i18n.plugin';
 | |
| 
 | |
| export const tool = defineTool({
 | |
|   name: translate('tools.lorem-ipsum-generator.title'),
 | |
|   path: '/lorem-ipsum-generator',
 | |
|   description: translate('tools.lorem-ipsum-generator.description'),
 | |
|   keywords: ['lorem', 'ipsum', 'dolor', 'sit', 'amet', 'placeholder', 'text', 'filler', 'random', 'generator'],
 | |
|   component: () => import('./lorem-ipsum-generator.vue'),
 | |
|   icon: AlignJustified,
 | |
| });
 |