Каркас будущего приложения

This commit is contained in:
Book Pauk
2022-08-16 14:54:41 +07:00
parent c3a0ce183e
commit 78be5a9856
22 changed files with 980 additions and 8 deletions

16
client/main.js Normal file
View File

@@ -0,0 +1,16 @@
import { createApp } from 'vue';
import router from './router';
import store from './store';
import q from './quasar';
import App from './components/App.vue';
const app = createApp(App);
app.use(router);
app.use(store);
app.use(q.quasar, q.options);
q.init();
app.mount('#app');