allow stats to be edited from admin panel

This commit is contained in:
Phillip Thelen
2024-08-28 16:03:29 +02:00
parent 0bd0ba096b
commit ff53a387d4
7 changed files with 319 additions and 5 deletions

View File

@@ -47,6 +47,11 @@
:preferences="hero.preferences"
/>
<stats
:hero="hero"
:reset-counter="resetCounter"
/>
<items-owned
:hero="hero"
:reset-counter="resetCounter"
@@ -127,6 +132,7 @@ import SubscriptionAndPerks from './subscriptionAndPerks';
import CustomizationsOwned from './customizationsOwned.vue';
import Achievements from './achievements.vue';
import UserHistory from './userHistory.vue';
import Stats from './stats.vue';
import { userStateMixin } from '../../../mixins/userState';
@@ -142,6 +148,7 @@ export default {
ContributorDetails,
Transactions,
UserHistory,
Stats,
SubscriptionAndPerks,
UserProfile,
Achievements,