upload: dashboard from Soulter/AstrBot-Dashboard

This commit is contained in:
Soulter
2024-12-17 23:40:32 +08:00
parent 63c604359b
commit 6df0e78b22
74 changed files with 3325 additions and 1 deletions
+30
View File
@@ -0,0 +1,30 @@
import { createVuetify } from 'vuetify';
import '@mdi/font/css/materialdesignicons.css';
import * as components from 'vuetify/components';
import * as directives from 'vuetify/directives';
import { PurpleTheme } from '@/theme/LightTheme';
export default createVuetify({
components,
directives,
theme: {
defaultTheme: 'PurpleTheme',
themes: {
PurpleTheme
}
},
defaults: {
VBtn: {},
VCard: {
rounded: 'md'
},
VTextField: {
rounded: 'lg'
},
VTooltip: {
// set v-tooltip default location to top
location: 'top'
}
}
});