mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-24 15:44:59 +00:00
17 lines
362 B
JavaScript
17 lines
362 B
JavaScript
import { createApp } from "vue";
|
|
import { _createI18n } from "ChillMainAssets/vuejs/_js/i18n";
|
|
import { appMessages } from "./i18n";
|
|
import store from "./store";
|
|
|
|
import App from "./App.vue";
|
|
|
|
const i18n = _createI18n(appMessages);
|
|
|
|
const app = createApp({
|
|
template: `<app></app>`,
|
|
})
|
|
.use(store)
|
|
.use(i18n)
|
|
.component("app", App)
|
|
.mount("#calendar");
|