mirror of
https://github.com/robonen/lorem-blog.git
synced 2026-03-21 03:14:38 +00:00
feat: init project scaffold
This commit is contained in:
8
src/app/main.ts
Normal file
8
src/app/main.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
import { createApp } from 'vue';
|
||||
import App from './App.vue';
|
||||
import router from './router';
|
||||
import './assets/index.css';
|
||||
|
||||
createApp(App)
|
||||
.use(router)
|
||||
.mount('#app');
|
||||
Reference in New Issue
Block a user