mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-29 18:14:59 +00:00
57 lines
1.4 KiB
JavaScript
57 lines
1.4 KiB
JavaScript
import { createApp } from "vue";
|
|
import { _createI18n } from "ChillMainAssets/vuejs/_js/i18n";
|
|
import { appMessages } from "./js/i18n";
|
|
import { initPromise } from "./store";
|
|
import "vue-toast-notification/dist/theme-sugar.css";
|
|
import App from "./App.vue";
|
|
import Banner from "./components/Banner.vue";
|
|
import ToastPlugin from "vue-toast-notification";
|
|
|
|
const root = window.vueRootComponent;
|
|
|
|
/*
|
|
* Load all App component, for AccompanyingCourse edition page
|
|
*/
|
|
if (root === "app") {
|
|
initPromise(root).then((store) => {
|
|
const i18n = _createI18n(appMessages);
|
|
|
|
const app = createApp({
|
|
template: `<app></app>`,
|
|
})
|
|
.use(store)
|
|
.use(i18n)
|
|
.use(ToastPlugin, {
|
|
position: "bottom-right",
|
|
type: "error",
|
|
duration: 5000,
|
|
dismissible: true,
|
|
})
|
|
.component("app", App)
|
|
.mount("#accompanying-course");
|
|
});
|
|
}
|
|
|
|
/*
|
|
* Load only Banner sub-component, for all others AccompanyingCourse page
|
|
*/
|
|
if (root === "banner") {
|
|
initPromise(root).then((store) => {
|
|
const i18n = _createI18n(appMessages);
|
|
|
|
const app = createApp({
|
|
template: `<banner></banner>`,
|
|
})
|
|
.use(store)
|
|
.use(i18n)
|
|
.use(ToastPlugin, {
|
|
position: "bottom-right",
|
|
type: "error",
|
|
duration: 5000,
|
|
dismissible: true,
|
|
})
|
|
.component("banner", Banner)
|
|
.mount("#banner-accompanying-course");
|
|
});
|
|
}
|