mirror of
https://github.com/bastienwirtz/homer.git
synced 2026-01-19 22:02:10 +01:00
15 lines
343 B
JavaScript
15 lines
343 B
JavaScript
import "./assets/app.scss";
|
|
import { createApp, h } from "vue";
|
|
import App from "./App.vue";
|
|
|
|
const app = createApp(App);
|
|
import Generic from "./components/services/Generic.vue";
|
|
|
|
app
|
|
.component("Generic", Generic)
|
|
.component("DynamicStyle", (_props, context) => {
|
|
return h("style", {}, context.slots);
|
|
});
|
|
|
|
app.mount("#app-mount");
|