40 lines
583 B
JavaScript
40 lines
583 B
JavaScript
import Vue from 'vue'
|
|
import {
|
|
Vuetify,
|
|
VApp,
|
|
VNavigationDrawer,
|
|
VFooter,
|
|
VList,
|
|
VBtn,
|
|
VIcon,
|
|
VGrid,
|
|
VToolbar,
|
|
transitions
|
|
} from 'vuetify'
|
|
import 'vuetify/src/stylus/app.styl'
|
|
|
|
Vue.use(Vuetify, {
|
|
components: {
|
|
VApp,
|
|
VNavigationDrawer,
|
|
VFooter,
|
|
VList,
|
|
VBtn,
|
|
VIcon,
|
|
VGrid,
|
|
VToolbar,
|
|
transitions
|
|
},
|
|
theme: {
|
|
primary: '#ee44aa',
|
|
secondary: '#424242',
|
|
accent: '#82B1FF',
|
|
error: '#FF5252',
|
|
info: '#2196F3',
|
|
success: '#4CAF50',
|
|
warning: '#FFC107'
|
|
},
|
|
customProperties: true,
|
|
iconfont: 'md',
|
|
})
|