nuxt
nuxt copied to clipboard
How can I use themes generated with the theme creator?
Hi guys,
How can I use themes generated with the theme creator? The method below is not working.
vuetify: { theme: { primary: '#00E676', secondary: '#00C853', accent: '#7C4DFF', error: '#f44336', warning: '#ffeb3b', info: '#2196f3', success: '#4caf50' } },
I pasted the above code into nuxt.config.js below the import of the vutifyjs module. Any idea?
In plugins/vuetify.js
, change Vue.use
call to
Vue.use(Vuetity, {
theme: { your theme object },
...any other potential options
}
By me this is not working...