Conditionally render tabs based on available Things

This commit is contained in:
Julian Stirling 2025-11-07 14:10:09 +00:00
parent 0b0483f4c7
commit f35c96d653
4 changed files with 53 additions and 40 deletions

View file

@ -13,6 +13,9 @@ export default {
thingDescription(thing) {
return this.$store.getters["wot/thingDescription"](thing);
},
thingList() {
return this.$store.getters["wot/thingList"];
},
thingAvailable(thing) {
return this.$store.getters["wot/thingAvailable"](thing);
},