mirror of
https://github.com/bastienwirtz/homer.git
synced 2025-03-13 14:59:23 +01:00
14 lines
299 B
JavaScript
14 lines
299 B
JavaScript
import { createApp, h } from "vue";
|
|
import App from "./App.vue";
|
|
|
|
import "@fortawesome/fontawesome-free/css/all.css";
|
|
import "./assets/app.scss";
|
|
|
|
const app = createApp(App);
|
|
|
|
app.component("DynamicStyle", (_props, context) => {
|
|
return h("style", {}, context.slots);
|
|
});
|
|
|
|
app.mount("#app-mount");
|