mirror of
https://github.com/haselkern/Minecraft-ArmorStand.git
synced 2025-05-18 05:55:35 +00:00
Deleted all old things, added Vue skeleton
This commit is contained in:
parent
665a22a24b
commit
5c5f34dc36
26 changed files with 13725 additions and 2640 deletions
9
src/App.vue
Normal file
9
src/App.vue
Normal file
|
@ -0,0 +1,9 @@
|
|||
<template>
|
||||
<h1>Hello Vue!</h1>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
|
||||
}
|
||||
</script>
|
3
src/assets/tailwind.css
Normal file
3
src/assets/tailwind.css
Normal file
|
@ -0,0 +1,3 @@
|
|||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
5
src/main.js
Normal file
5
src/main.js
Normal file
|
@ -0,0 +1,5 @@
|
|||
import { createApp } from "vue";
|
||||
import App from "./App.vue";
|
||||
import "./assets/tailwind.css";
|
||||
|
||||
createApp(App).mount("#app");
|
Loading…
Add table
Add a link
Reference in a new issue