Initial Commit, includes stubs from chat app
This commit is contained in:
18
src/main.ts
Normal file
18
src/main.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
import { createApp } from 'vue';
|
||||
|
||||
import App from './App.vue';
|
||||
import router from './router/index.js';
|
||||
import bootApp from './boot/app.js';
|
||||
|
||||
import './style.css';
|
||||
|
||||
const app = createApp(App);
|
||||
|
||||
app.use(router);
|
||||
|
||||
await bootApp({
|
||||
app,
|
||||
router,
|
||||
});
|
||||
|
||||
app.mount('#app');
|
||||
Reference in New Issue
Block a user