mirror of
https://github.com/davegallant/rfd-fyi.git
synced 2025-10-03 07:06:02 +00:00
22 lines
385 B
JavaScript
22 lines
385 B
JavaScript
import { createApp } from "vue";
|
|
import App from "./App.vue";
|
|
import { createRouter, createWebHashHistory } from "vue-router";
|
|
|
|
import "./theme.css";
|
|
|
|
import { registerPlugins } from "@/plugins";
|
|
|
|
const routes = [];
|
|
|
|
const router = createRouter({
|
|
history: createWebHashHistory(),
|
|
routes,
|
|
});
|
|
|
|
const app = createApp(App);
|
|
|
|
registerPlugins(app);
|
|
|
|
app.use(router);
|
|
app.mount("#app");
|