Slot cards have slot color as outline

This commit is contained in:
Stefan Zermatten
2022-09-13 15:47:31 +02:00
parent ffb5b4a4f3
commit b051d764f8

View File

@@ -62,8 +62,10 @@ export default {
hover: false,
}},
computed: {
accentColor(){
if (this.theme.isDark){
accentColor() {
if (this.model.color) {
return this.model.color
} else if (this.theme.isDark){
return this.$vuetify.theme.themes.dark.primary;
} else {
return this.$vuetify.theme.themes.light.primary;