mirror of
https://github.com/eugene-serb/wavelovers.git
synced 2023-09-09 23:41:16 +03:00
d64c28ce3b
- added router module for add metatags. - fix filepath for imports in main.ts.
8 lines
177 B
TypeScript
8 lines
177 B
TypeScript
import { createApp } from 'vue';
|
|
import App from '@/App.vue';
|
|
import router from '@/router';
|
|
import store from '@/store';
|
|
|
|
createApp(App).use(store).use(router).mount('#app');
|
|
|