first commit
This commit is contained in:
8
client/src/main.js
Executable file
8
client/src/main.js
Executable file
@@ -0,0 +1,8 @@
|
||||
import { createApp } from 'vue';
|
||||
import './style.css';
|
||||
import App from './App.vue';
|
||||
import router from './router';
|
||||
|
||||
const app = createApp(App);
|
||||
app.use(router);
|
||||
app.mount('#app');
|
||||
Reference in New Issue
Block a user