feat: unplugin-vue-router, prettier, eslint, .gitattributes

This commit is contained in:
Benjamin Singleton 2025-05-13 15:24:17 -05:00
parent 0d98f11e21
commit 53c6efa701
24 changed files with 3175 additions and 169 deletions

View file

@ -1,5 +1,9 @@
import { createApp } from 'vue'
import './style.css'
import App from './App.vue'
import { createApp } from "vue";
import "./style.css";
import App from "./App.vue";
import { createRouter, createWebHistory } from "vue-router";
import { routes } from "vue-router/auto-routes";
createApp(App).mount('#app')
const router = createRouter({ history: createWebHistory(), routes: routes });
createApp(App).use(router).mount("#app");