Skip to content

Instantly share code, notes, and snippets.

@greg-nagy
Created October 29, 2018 10:52
Show Gist options
  • Save greg-nagy/e1b9ef0830de4df5b0d5af1da6ea0dfe to your computer and use it in GitHub Desktop.
Save greg-nagy/e1b9ef0830de4df5b0d5af1da6ea0dfe to your computer and use it in GitHub Desktop.
import Vue from "vue";
import "@/stylus/main.styl";
import {
Vuetify,
VApp,
transitions,
VToolbar,
VGrid,
VCard,
VBtn,
VIcon,
VFooter,
VBottomNav,
VSnackbar,
VAvatar,
VForm,
VTextField,
VProgressCircular,
VDivider
} from "vuetify";
import { Resize, Scroll } from "vuetify/es5/directives";
Vue.use(Vuetify, {
components: {
VApp,
VToolbar,
VGrid,
VCard,
VBottomNav,
VBtn,
VIcon,
VFooter,
VSnackbar,
VAvatar,
VForm,
VTextField,
VProgressCircular,
VDivider,
transitions
},
directives: {
Resize,
Scroll
},
theme: {
primary: "#019AE8",
secondary: "#424242",
accent: "#82B1FF",
error: "#FF5252",
info: "#2196F3",
success: "#4CAF50",
warning: "#FFC107"
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment