mirror of
				https://github.com/CorentinTh/it-tools.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	- Added Slider component to the UI library - Added Checkbox component to the UI library - Added Textarea component to the UI library
		
			
				
	
	
		
			11 lines
		
	
	
		
			221 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			221 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<script setup lang="ts">
 | 
						|
import CommandPalette from './src/modules/command-palette/components/command-palette.vue';
 | 
						|
</script>
 | 
						|
 | 
						|
<template>
 | 
						|
  <NuxtLayout>
 | 
						|
    <CommandPalette />
 | 
						|
    <NuxtPage />
 | 
						|
  </NuxtLayout>
 | 
						|
</template>
 |