first commit

This commit is contained in:
sco
2020-06-15 20:24:56 +02:00
commit d83ed47b6b
55 changed files with 22971 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import Vue from "vue";
import App from "./App.vue";
import "./registerServiceWorker";
import "@fortawesome/fontawesome-free/css/all.css";
import "./assets/app.scss";
Vue.config.productionTip = false;
Vue.component("DynamicStyle", {
render: function (createElement) {
return createElement("style", this.$slots.default);
},
});
new Vue({
render: (h) => h(App),
}).$mount("#app");