1
0
Fork 0
mirror of https://github.com/CorentinTh/it-tools.git synced 2025-08-01 03:25:19 +02:00

feat: TokenGenerator + Hash

This commit is contained in:
CorentinTh 2020-04-25 18:43:17 +02:00 committed by Corentin THOMASSET
parent 1fba5c42e1
commit d1db2c8601
19 changed files with 610 additions and 135 deletions

28
src/plugins/vuetify.js Normal file
View file

@ -0,0 +1,28 @@
import Vue from 'vue';
import Vuetify, { VSnackbar, VBtn, VIcon } from 'vuetify/lib'
Vue.use(Vuetify, {
components: {
VSnackbar,
VBtn,
VIcon
}
})
export default new Vuetify({
theme: {
themes: {
light: {
primary: '#4CAF50',
secondary: '#424242',
accent: '#4CAF50',
error: '#FF5252',
info: '#2196F3',
success: '#4CAF50',
warning: '#FFC107'
},
},
},
icons: {
iconfont: 'fa4',
},
});