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