mirror of
https://github.com/davegallant/rfd-fyi.git
synced 2025-08-07 09:02:27 +00:00
21 lines
409 B
JavaScript
21 lines
409 B
JavaScript
import { createApp } from "vue";
|
|
import App from "./App.vue";
|
|
import { createRouter, createWebHashHistory } from "vue-router";
|
|
|
|
import "bootstrap/dist/css/bootstrap.min.css";
|
|
import "bootstrap/dist/js/bootstrap.min.js";
|
|
|
|
import "./theme.css";
|
|
|
|
const routes = [];
|
|
|
|
const router = createRouter({
|
|
history: createWebHashHistory(),
|
|
routes,
|
|
});
|
|
|
|
const app = createApp(App);
|
|
|
|
app.use(router);
|
|
app.mount("#app");
|