mirror of
				https://github.com/ecomfe/vue-echarts.git
				synced 2025-10-31 00:46:04 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			311 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			311 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <script setup>
 | |
| import { registerTheme } from "echarts/core";
 | |
| 
 | |
| import "echarts-liquidfill";
 | |
| import VChart from "../../src/ECharts";
 | |
| import theme from "../theme.json";
 | |
| import logo from "../data/logo";
 | |
| 
 | |
| registerTheme("ovilia-green", theme);
 | |
| </script>
 | |
| 
 | |
| <template>
 | |
|   <v-chart id="logo" :option="logo" />
 | |
| </template>
 | 
