mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-10-03 20:09:42 +00:00
13 lines
312 B
TypeScript
13 lines
312 B
TypeScript
import App from "ChillMainAssets/vuejs/HomepageWidget/App.vue";
|
|
import { createApp } from "vue";
|
|
import { store } from "ChillMainAssets/vuejs/HomepageWidget/store";
|
|
|
|
declare global {
|
|
interface Window {
|
|
homepage_config: string;
|
|
}
|
|
}
|
|
|
|
const _app = createApp(App);
|
|
_app.use(store).mount("#homepage_widget");
|