Switch new display to Vue

This commit is contained in:
2024-03-04 01:18:45 +00:00
parent a8e60c2e87
commit 4aaa9064fb
62 changed files with 2863 additions and 1569 deletions

View File

@@ -0,0 +1,8 @@
import vuetify from './vuetify';
import router from '../router';
import type { App } from 'vue';
export function registerPlugins(app: App) {
app.use(vuetify).use(router);
}

View File

@@ -0,0 +1,20 @@
import '@mdi/font/css/materialdesignicons.css';
import 'vuetify/styles';
import { ThemeDefinition, createVuetify } from 'vuetify';
const theme: ThemeDefinition = {
dark: false,
colors: {
primary: '#602f6b'
}
};
export default createVuetify({
theme: {
defaultTheme: 'theme',
themes: {
theme
}
}
});