mirror of
https://github.com/LukeHagar/unicorn-utterances.git
synced 2025-12-06 12:57:44 +00:00
6 lines
114 B
JavaScript
6 lines
114 B
JavaScript
// main.js
|
|
import { createApp } from "vue";
|
|
import Parent from "./Parent.vue";
|
|
|
|
createApp(Parent).mount("#root");
|