mirror of
https://github.com/loro-dev/loro.git
synced 2025-02-06 12:25:03 +00:00
5 lines
115 B
TypeScript
5 lines
115 B
TypeScript
import { createApp } from "vue";
|
|
import "./style.css";
|
|
import App from "./App.vue";
|
|
|
|
createApp(App).mount("#app");
|