Files
vueecharts/demo/examples/LogoChart.vue
2025-05-25 00:24:38 +08:00

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>