(feat): init commit of Vue frontend
This commit is contained in:
parent
1f810cc0c9
commit
f2fab8801c
8 changed files with 179 additions and 70 deletions
|
|
@ -1,4 +1,7 @@
|
|||
import { createApp } from 'vue'
|
||||
import App from './App.vue'
|
||||
import { createApp } from 'vue';
|
||||
import App from './App.vue';
|
||||
import router from './router';
|
||||
|
||||
createApp(App).mount('#app')
|
||||
const app = createApp(App);
|
||||
app.use(router);
|
||||
app.mount('#app');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue