mirror of
https://github.com/hay-kot/mealie.git
synced 2025-08-23 06:45:22 -07:00
fixes #465
This commit is contained in:
parent
310cd5126c
commit
8982422381
1 changed files with 7 additions and 2 deletions
|
@ -14,7 +14,7 @@
|
||||||
<v-icon>mdi-account-plus-outline</v-icon>
|
<v-icon>mdi-account-plus-outline</v-icon>
|
||||||
</v-tab>
|
</v-tab>
|
||||||
|
|
||||||
<v-tab href="#groups">
|
<v-tab href="#groups" @click="reqGroups">
|
||||||
{{ $t("group.groups") }}
|
{{ $t("group.groups") }}
|
||||||
<v-icon>{{ $globals.icons.group }}</v-icon>
|
<v-icon>{{ $globals.icons.group }}</v-icon>
|
||||||
</v-tab>
|
</v-tab>
|
||||||
|
@ -55,7 +55,12 @@ export default {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.$store.dispatch("requestAllGroups");
|
this.reqGroups();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
reqGroups() {
|
||||||
|
this.$store.dispatch("requestAllGroups");
|
||||||
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue