Files
2024-01-15 20:43:46 -08:00

6 lines
114 B
JavaScript

// main.js
import { createApp } from "vue";
import Parent from "./Parent.vue";
createApp(Parent).mount("#root");