-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvuetify.config.ts
64 lines (63 loc) · 1.18 KB
/
vuetify.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import { md3 } from 'vuetify/blueprints'
import { defineVuetifyConfiguration } from 'vuetify-nuxt-module/custom-configuration'
export default defineVuetifyConfiguration({
blueprint: md3,
locale: {
locale: 'km',
fallback: 'en',
},
localeMessages: ['km', 'en'],
date: { adapter: 'dayjs' },
defaults: {
VSwitch: {
color: 'primary',
},
VDataTable: {
fixedHeader: true,
hover: true,
},
VCard: {
flat: true,
VBtn: { variant: 'outlined', color: '' },
},
VBtn: { color: 'primary' },
VNavigationDrawer: {
VList: {
nav: true,
VListItem: {
rounded: 'xl',
},
},
},
VChip: { rounded: 'lg' },
VSelect: {
color: 'primary',
},
VTextarea: {
color: 'primary',
},
VTextField: {
color: 'primary',
},
VCheckbox: {
color: 'primary',
ripple: false,
},
VCheckboxBtn: {
color: 'primary',
},
VProgressLinear: {
color: 'primary',
},
},
display: {
mobileBreakpoint: 'sm',
},
theme: {
defaultTheme: 'light',
themes: {
light: { colors: {} },
dark: { colors: {} },
},
},
})