Files
Homer/src/main.js
2025-03-30 15:23:22 +02:00

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");