diff options
Diffstat (limited to 'src/main.js')
-rw-r--r-- | src/main.js | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/main.js b/src/main.js new file mode 100644 index 0000000..e5995a4 --- /dev/null +++ b/src/main.js | |||
@@ -0,0 +1,19 @@ | |||
1 | import Vue from "vue"; | ||
2 | import App from "./App.vue"; | ||
3 | import "./registerServiceWorker"; | ||
4 | |||
5 | import "@fortawesome/fontawesome-free/css/all.css"; | ||
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"); | ||