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:
parent
f2bf164431
commit
cb781e94eb
9 changed files with 266 additions and 394 deletions
|
@ -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');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue