1
0
Fork 0
mirror of https://github.com/haselkern/Minecraft-ArmorStand.git synced 2025-05-17 15:05:33 +00:00

Basic 3D support

This commit is contained in:
Lars Martens 2020-12-17 16:16:33 +01:00
parent f2bf164431
commit cb781e94eb
9 changed files with 266 additions and 394 deletions

View file

@ -1,6 +1,11 @@
import { createApp } from "vue";
import Vue from "vue";
import App from "./App.vue";
import * as VueThreejs from "vue-threejs";
import "./assets/tailwind.css";
import "../node_modules/@fortawesome/fontawesome-free/css/all.css";
createApp(App).mount("#app");
Vue.use(VueThreejs);
new Vue({
render: h => h(App),
}).$mount('#app');