Initial Commit

This commit is contained in:
shiny_nematoda 2022-04-07 02:12:25 +05:30
commit 98d558ad6f
27 changed files with 3097 additions and 0 deletions

6
src/main.js Normal file
View file

@ -0,0 +1,6 @@
import { createApp } from 'vue';
import App from './App.vue';
const app = createApp(App);
app.mount('#app');