I'm using webpack to compile my vuejs project and use the vuetify framework but I can't get the colors to work. For example this:
<v-btn color="error">Error</v-btn>
Does not produce the red error button, instead it's just the white one. I include all the files using this:
main.js
import Vuetify from 'vuetify'
Vue.use(Vuetify)
import '../node_modules/vuetify/dist/vuetify.min.css'
and App.vue
<style lang="stylus">
@require '../node_modules/vuetify/src/stylus/main'
</style>
Could someone tell me what I'm forgetting?