I have setup Vuetify on my Vue webpack application.
Vuetify
Vue
My project is setup with vue init webpack my-project running Vue 2.5.2>
vue init webpack my-project
Vue 2.5.2>
Try adding:
const opts = { theme: { dark: true, themes: { light: { primary: '...', ... }, dark: { primary: '...', ... } } } }
and
new Vue({ el: '#app', router, store, vuetify: new Vuetify(opts), render: h => h(App) })
to your main.js.
main.js