Migrate to vuetify and vite (#251)

This commit is contained in:
2025-08-29 20:57:27 -04:00
committed by GitHub
parent 065c965f00
commit f0e33e6060
13 changed files with 2230 additions and 362 deletions

View File

@@ -2,11 +2,10 @@ 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";
import { registerPlugins } from "@/plugins";
const routes = [];
const router = createRouter({
@@ -16,5 +15,7 @@ const router = createRouter({
const app = createApp(App);
registerPlugins(app);
app.use(router);
app.mount("#app");