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