mirror of
https://github.com/Dichgrem/Vue.git
synced 2025-12-16 13:41:59 -05:00
7 lines
179 B
JavaScript
7 lines
179 B
JavaScript
import { createApp } from "vue";
|
|
import { createPinia } from "pinia";
|
|
import App from "./App.vue";
|
|
import "./assets/global.css";
|
|
|
|
createApp(App).use(createPinia()).mount("#app");
|