feat: unplugin-vue-router, prettier, eslint, .gitattributes
This commit is contained in:
parent
0d98f11e21
commit
53c6efa701
24 changed files with 3175 additions and 169 deletions
12
src/main.ts
12
src/main.ts
|
|
@ -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");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue