File size: 126 Bytes
0914710
 
 
 
 
 
1
2
3
4
5
6
7
import { createApp } from "vue";
import AppMain from "./AppMain.vue";

const main = createApp(AppMain);

main.mount("#root");