Initial commit
This commit is contained in:
commit
f07b407e7a
25 changed files with 2383 additions and 0 deletions
7
frontend/entry.js
Normal file
7
frontend/entry.js
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue