Initial project setup.

Using Vue 3 and TailwindCSS (with PostCSS configuration)
This commit is contained in:
Atharva Sawant
2024-10-15 14:30:00 +05:30
commit a025b41c5f
10 changed files with 2925 additions and 0 deletions

5
src/main.js Normal file
View File

@@ -0,0 +1,5 @@
import { createApp } from 'vue'
import App from './App.vue'
import './style.css'
createApp(App).mount('#app')