[Vuejs]-Modifying vuetify theme with laravel

1👍

You should use v-app vuetify tag like

Component.vue

<template v-slot:activator="{ on }">
  <v-app>
    <v-btn color="primary" dark class="mb-2" v-on="on">Add Department</v-btn>
  </v-app>
</template>
👤Anis

0👍

That’s because you have to change the light theme, which I assume you’re using since you haven’t put dark to true.

Vue.use(Vuetify, {
   theme: {
     themes: {
       light: {
         primary: '#ff0000',
         secondary: '#ff0000',
         accent: '#ff0000',
         error: '#ff0000' 
       } 
     } 
   }
});
👤Jesper

Leave a comment