Level 3
1, Create plugin called vuetify.js in plugins and add this code.
import Vue from 'vue'
import Vuetify from 'vuetify'
Vue.use(Vuetify)
2, In nuxt.config.js add the following.
plugins: ['~plugins/vuetify.js'],
css: [
{
src: join(__dirname, 'assets/css/app.styl'),
lang: 'styl'
}
],
build: {
vendor: ['vuetify'],
}
3, In assets folder create css folder and file called app.styl add this content
$theme := {
primary: #9c27b0
accent: #ce93d8
secondary: #424242
info: #0D47A1
warning: #ffb300
error: #B71C1C
success: #2E7D32
}
@require '~vuetify/src/stylus/main.styl'
2 likes