]>
git.immae.eu Git - github/bastienwirtz/homer.git/blob - src/main.js
1 import { createApp
, h
} from "vue";
2 import App
from "./App.vue";
4 import "@fortawesome/fontawesome-free/css/all.css";
5 import "./assets/app.scss";
7 const app
= createApp(App
);
9 app
.component("DynamicStyle", (_props
, context
) => {
10 return h("style", {}, context
.slots
);
13 app
.mount("#app-mount");