9 lines
199 B
TypeScript
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");
|