nidus-sync/ts/main-rmo.ts
Eli Ribble d7d6888f63
Initial commit of some work creating RMO single-page app
Doesn't work yet, but they both start, so checkpoint.
2026-04-03 15:02:37 +00:00

9 lines
199 B
TypeScript

import { createApp } from "vue";
import { createHead } from "@vueuse/head";
import App from "./AppRMO.vue";
const app = createApp(App);
const head = createHead();
app.use(head);
app.mount("#app");