first commit, iswision19

This commit is contained in:
garionion 2021-05-17 18:20:36 +02:00
commit 3a7e803c42
76 changed files with 24220 additions and 0 deletions

7
plugins/README.md Normal file
View file

@ -0,0 +1,7 @@
# PLUGINS
**This directory is not required, you can delete it if you don't want to use it.**
This directory contains Javascript plugins that you want to run before mounting the root Vue.js application.
More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/plugins).

11
plugins/vue-mq.js Normal file
View file

@ -0,0 +1,11 @@
import Vue from 'vue'
import VueMq from 'vue-mq'
Vue.use(VueMq, {
breakpoints: {
mobile: 450,
tablet: 900,
laptop: 1250,
desktop: Infinity
}
})

15
plugins/vuetify.js Normal file
View file

@ -0,0 +1,15 @@
import Vue from 'vue'
import Vuetify from 'vuetify/lib'
import colors from 'vuetify/es5/util/colors'
Vue.use(Vuetify, {
theme: {
primary: colors.blue.darken2,
accent: colors.grey.darken3,
secondary: colors.amber.darken3,
info: colors.teal.lighten1,
warning: colors.amber.base,
error: colors.deepOrange.accent4,
success: colors.green.accent3
}
})