improve NodeView components and style

This commit is contained in:
axolotle
2021-06-24 16:13:31 +02:00
parent f4d81dffcf
commit a25123f4f9
13 changed files with 54 additions and 71 deletions
+3 -2
View File
@@ -23,12 +23,13 @@ export default {
props: {
variant: { type: String, required: true },
active: { type: Boolean, default: false }
active: { type: Boolean, default: false },
hovered: { type: Boolean, default: false }
},
data () {
return {
show: false
show: this.hovered
}
},