mirror of
				https://github.com/em-squared/5e-drs.git
				synced 2025-10-31 05:24:20 +00:00 
			
		
		
		
	
		
			
	
	
		
			26 lines
		
	
	
	
		
			553 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
		
		
			
		
	
	
			26 lines
		
	
	
	
		
			553 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
|   | import Vuex from 'vuex' | ||
|  | import store from '../store' | ||
|  | import '@mdi/font/css/materialdesignicons.css' | ||
|  | import Vuetify from 'vuetify' | ||
|  | import 'vuetify/dist/vuetify.min.css' | ||
|  | 
 | ||
|  | import colors from 'vuetify/es5/util/colors' | ||
|  | 
 | ||
|  | export default ({ | ||
|  |   Vue, | ||
|  |   options, | ||
|  |   router, | ||
|  |   siteData | ||
|  | }) => { | ||
|  |   Vue.use(Vuex) | ||
|  |   Vue.mixin({ store: store }) | ||
|  |   Vue.use(Vuetify) | ||
|  |   options.vuetify = new Vuetify({ | ||
|  |     theme: { | ||
|  |       // primary: colors.red.darken1, // #E53935
 | ||
|  |       // secondary: colors.red.lighten4, // #FFCDD2
 | ||
|  |       // accent: colors.indigo.base // #3F51B5
 | ||
|  |     } | ||
|  |   }) | ||
|  | } |