|  | 
| 1 |  | -import Vue from 'vue' | 
| 2 |  | -<%_ if (useAlaCarte) { _%> | 
| 3 |  | -import { | 
| 4 |  | -  Vuetify, | 
| 5 |  | -  VApp, | 
| 6 |  | -  VNavigationDrawer, | 
| 7 |  | -  VFooter, | 
| 8 |  | -  VList, | 
| 9 |  | -  VBtn, | 
| 10 |  | -  VIcon, | 
| 11 |  | -  VGrid, | 
| 12 |  | -  VToolbar, | 
| 13 |  | -  transitions | 
| 14 |  | -} from 'vuetify' | 
| 15 |  | -import 'vuetify/src/stylus/app.styl' | 
| 16 |  | -<%_ } else { _%> | 
| 17 |  | -import Vuetify from 'vuetify' | 
| 18 |  | -import 'vuetify/dist/vuetify.min.css' | 
| 19 |  | -<%_ } _%> | 
| 20 |  | -<%_ if (locale !== 'en') { _%> | 
| 21 |  | -import <%= locale.replace(/-/g, '') %> from 'vuetify/src/locale/<%= locale %>' | 
| 22 |  | -<%_ } _%> | 
| 23 |  | - | 
| 24 |  | -Vue.use(Vuetify, { | 
| 25 |  | -<%_ if (useAlaCarte) { _%> | 
| 26 |  | -  components: { | 
| 27 |  | -    VApp, | 
| 28 |  | -    VNavigationDrawer, | 
| 29 |  | -    VFooter, | 
| 30 |  | -    VList, | 
| 31 |  | -    VBtn, | 
| 32 |  | -    VIcon, | 
| 33 |  | -    VGrid, | 
| 34 |  | -    VToolbar, | 
| 35 |  | -    transitions | 
| 36 |  | -  }, | 
| 37 |  | -<%_ } _%> | 
| 38 |  | -<%_ if (useTheme) { _%> | 
| 39 |  | -  theme: { | 
| 40 |  | -    primary: '#ee44aa', | 
| 41 |  | -    secondary: '#424242', | 
| 42 |  | -    accent: '#82B1FF', | 
| 43 |  | -    error: '#FF5252', | 
| 44 |  | -    info: '#2196F3', | 
| 45 |  | -    success: '#4CAF50', | 
| 46 |  | -    warning: '#FFC107' | 
| 47 |  | -  }, | 
| 48 |  | -<%_ } _%> | 
| 49 |  | -<%_ if (useCustomProperties) { _%> | 
| 50 |  | -  customProperties: true, | 
| 51 |  | -<%_ } _%> | 
| 52 |  | -  iconfont: '<%= iconFont %>', | 
| 53 |  | -<%_ if (locale !== 'en') { _%> | 
| 54 |  | -  lang: { | 
| 55 |  | -    locales: { <%= locale.replace(/-/g, '') %> }, | 
| 56 |  | -    current: '<%= locale %>' | 
| 57 |  | -  }, | 
| 58 |  | -<%_ } _%> | 
| 59 |  | -}) | 
| 60 |  | -
 | 
|  | 1 | +import Vue from 'vue' | 
|  | 2 | +<%_ if (useAlaCarte) { _%> | 
|  | 3 | +import { | 
|  | 4 | +  Vuetify, | 
|  | 5 | +  VApp, | 
|  | 6 | +  VNavigationDrawer, | 
|  | 7 | +  VFooter, | 
|  | 8 | +  VList, | 
|  | 9 | +  VBtn, | 
|  | 10 | +  VIcon, | 
|  | 11 | +  VGrid, | 
|  | 12 | +  VToolbar, | 
|  | 13 | +  transitions | 
|  | 14 | +} from 'vuetify' | 
|  | 15 | +import 'vuetify/src/stylus/app.styl' | 
|  | 16 | +<%_ } else { _%> | 
|  | 17 | +import Vuetify from 'vuetify' | 
|  | 18 | +import 'vuetify/dist/vuetify.min.css' | 
|  | 19 | +<%_ } _%> | 
|  | 20 | +<%_ if (locale !== 'en') { _%> | 
|  | 21 | +import <%= locale.replace(/-/g, '') %> from 'vuetify/<%= typescript ? 'src' : 'es5' %>/locale/<%= locale %>' | 
|  | 22 | +<%_ } _%> | 
|  | 23 | + | 
|  | 24 | +Vue.use(Vuetify, { | 
|  | 25 | +<%_ if (useAlaCarte) { _%> | 
|  | 26 | +  components: { | 
|  | 27 | +    VApp, | 
|  | 28 | +    VNavigationDrawer, | 
|  | 29 | +    VFooter, | 
|  | 30 | +    VList, | 
|  | 31 | +    VBtn, | 
|  | 32 | +    VIcon, | 
|  | 33 | +    VGrid, | 
|  | 34 | +    VToolbar, | 
|  | 35 | +    transitions | 
|  | 36 | +  }, | 
|  | 37 | +<%_ } _%> | 
|  | 38 | +<%_ if (useTheme) { _%> | 
|  | 39 | +  theme: { | 
|  | 40 | +    primary: '#ee44aa', | 
|  | 41 | +    secondary: '#424242', | 
|  | 42 | +    accent: '#82B1FF', | 
|  | 43 | +    error: '#FF5252', | 
|  | 44 | +    info: '#2196F3', | 
|  | 45 | +    success: '#4CAF50', | 
|  | 46 | +    warning: '#FFC107' | 
|  | 47 | +  }, | 
|  | 48 | +<%_ } _%> | 
|  | 49 | +<%_ if (useCustomProperties) { _%> | 
|  | 50 | +  customProperties: true, | 
|  | 51 | +<%_ } _%> | 
|  | 52 | +  iconfont: '<%= iconFont %>', | 
|  | 53 | +<%_ if (locale !== 'en') { _%> | 
|  | 54 | +  lang: { | 
|  | 55 | +    locales: { <%= locale.replace(/-/g, '') %> }, | 
|  | 56 | +    current: '<%= locale %>' | 
|  | 57 | +  }, | 
|  | 58 | +<%_ } _%> | 
|  | 59 | +}) | 
|  | 60 | + | 
0 commit comments