]>
Commit | Line | Data |
---|---|---|
b9c5fcf0 BW |
1 | import Vue from "vue"; |
2 | import App from "./App.vue"; | |
3 | import "./registerServiceWorker"; | |
4 | ||
5 | import "@fortawesome/fontawesome-free/css/all.css"; | |
b9c5fcf0 BW |
6 | |
7 | import "./assets/app.scss"; | |
8 | ||
9 | Vue.config.productionTip = false; | |
10 | ||
11 | Vue.component("DynamicStyle", { | |
12 | render: function (createElement) { | |
13 | return createElement("style", this.$slots.default); | |
14 | }, | |
15 | }); | |
16 | ||
17 | new Vue({ | |
18 | render: (h) => h(App), | |
19 | }).$mount("#app"); |