TypeScript · 93 bytes Raw Blame History
1 import { createApp } from "vue";
2 import App from "./App.vue";
3
4 createApp(App).mount("#app");