While using vuetify
, I tried to change the theme from the vuex
store using the $vuetify instance, but encountered the following error:
Cannot set property 'theme' of undefined
Below is the code snippet:
export default {
getters: {},
mutations: {
toggleDarkTheme(state) {
this.$vuetify.theme.primary = "#424242";
}
}
};