We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97ee91c commit fa7e5ffCopy full SHA for fa7e5ff
1 file changed
generator/templates/Default/src/plugins/vuetify.js
@@ -0,0 +1,27 @@
1
+import Vue from 'vue';
2
+import Vuetify from 'vuetify';
3
+import '@fortawesome/fontawesome-pro/css/all.css';
4
+import 'vuetify/dist/vuetify.min.css';
5
+import nl from 'vuetify/es5/locale/nl';
6
+
7
+Vue.use(Vuetify, {
8
+ customProperties: true,
9
+ iconfont: 'fa',
10
+ icons: {
11
+ 'close': 'fas fa-times',
12
+ 'menu': 'fas fa-bars',
13
+ 'delete': 'fas fa-trash',
14
+ 'add': 'fas fa-plus',
15
+ 'edit': 'fas fa-pencil-alt',
16
+ 'search': 'fas fa-search',
17
+ },
18
+ lang: {
19
+ locales: {nl},
20
+ current: 'nl',
21
22
+ theme: {
23
+ primary: '#002F4E',
24
+ secondary: '#000000',
25
+ accent: '#FFD0B1',
26
27
+});
0 commit comments