mirror of
https://github.com/ecomfe/vue-echarts.git
synced 2025-10-28 03:25:02 +08:00
9 lines
195 B
TypeScript
9 lines
195 B
TypeScript
import { createApp } from "vue";
|
|
import { createPinia } from "pinia";
|
|
import Demo from "./Demo.vue";
|
|
|
|
const pinia = createPinia();
|
|
const app = createApp(Demo);
|
|
app.use(pinia);
|
|
app.mount("#app");
|