mirror of
				https://github.com/ecomfe/vue-echarts.git
				synced 2025-10-31 00:46:04 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			220 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			220 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { useDark } from "@vueuse/core";
 | |
| 
 | |
| export function useDemoDark() {
 | |
|   return useDark({
 | |
|     storageKey: "vue-echarts-demo-theme",
 | |
|     valueLight: "light",
 | |
|     valueDark: "dark",
 | |
|     disableTransition: false,
 | |
|   });
 | |
| }
 | 
