diff options
| author | Lex Neva <github.com@lexneva.name> | 2020-08-19 21:15:21 -0400 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2020-08-19 21:15:21 -0400 |
| commit | 69f931f0330c448911221752a226f612acb08713 (patch) | |
| tree | f8b25fa47b80a7dc360a17c6e22a593524ecb728 /electron/src/renderer/main.js | |
| parent | 690ee0c416635f8d6d3dc07048be90bd0da7748f (diff) | |
add vuetify
Diffstat (limited to 'electron/src/renderer/main.js')
| -rw-r--r-- | electron/src/renderer/main.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/electron/src/renderer/main.js b/electron/src/renderer/main.js index c5f39948..95d9dbf1 100644 --- a/electron/src/renderer/main.js +++ b/electron/src/renderer/main.js @@ -35,6 +35,9 @@ import Transitions from 'vue2-transitions' import GetTextPlugin from 'vue-gettext' import translations from './assets/translations.json' import {selectLanguage} from '../lib/i18n' +import Vuetify from 'vuetify' +import 'vuetify/dist/vuetify.min.css' +import '@mdi/font/css/materialdesignicons.css' // We have to add to the library every icon we use anywhere in the UI. // This avoids the need to bundle the entire font-awesome icon set with @@ -77,8 +80,11 @@ Vue.use(GetTextPlugin, { Vue.http = Vue.prototype.$http = axios Vue.config.productionTip = false +Vue.use(Vuetify) +let vuetify = new Vuetify({}) /* eslint-disable no-new */ new Vue({ + vuetify, components: {App}, router, template: '<App/>' |
