first commit

This commit is contained in:
2026-06-26 16:34:27 +08:00
commit 45ae1670c6
135 changed files with 10502 additions and 0 deletions

14
src/main.ts Normal file
View File

@@ -0,0 +1,14 @@
import { createApp } from "vue";
import "./style.less";
import App from "./App.vue";
import Chart from "./components/chart/index.vue";
import * as echarts from "echarts";
import echartsConfig from "./config/echarts.config";
echarts.registerTheme("t-theme", echartsConfig);
const app = createApp(App);
app.component("TChart", Chart);
app.mount("#app");