Fix frontend code location

This commit is contained in:
Edward Betts 2024-05-04 11:12:41 +03:00
parent 69aa945a26
commit 7e6ea04f53
2 changed files with 1 additions and 1 deletions

7
frontend/main.js Normal file
View file

@ -0,0 +1,7 @@
import {createApp} from 'vue';
import App from './App.vue';
export default function(props) {
const app = createApp(App, props).mount('#app');
return app;
}