Add router and basic home view
This commit is contained in:
parent
2342a99405
commit
4d718f9a12
4 changed files with 25 additions and 4 deletions
|
|
@ -1,9 +1,11 @@
|
|||
import { createApp } from "vue";
|
||||
import { createHead } from "@vueuse/head";
|
||||
import App from "@/AppRMO.vue";
|
||||
import router from "@/rmo/router";
|
||||
import App from "@/rmo/App.vue";
|
||||
|
||||
const app = createApp(App);
|
||||
const head = createHead();
|
||||
|
||||
app.use(head);
|
||||
app.use(router);
|
||||
app.mount("#app");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue