mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-17 12:14:58 +00:00
7 lines
136 B
JavaScript
7 lines
136 B
JavaScript
import { createApp } from "vue";
|
|
|
|
import App from "./App.vue";
|
|
import store from "./store";
|
|
|
|
createApp(App).use(store).mount("#event");
|