This commit is contained in:
2026-01-25 19:18:34 +07:00
parent 770c09b9b2
commit 8bdcbbf527
6 changed files with 200 additions and 16 deletions

View File

@@ -104,6 +104,6 @@ const bgClass = computed(() => {
<style scoped>
.notification-item {
position: relative;
border-radius: 8px;
}
</style>

View File

@@ -43,7 +43,7 @@ const currentPlan = computed(() => {
return plans.value.find(p => p.id === currentPlanId.value);
});
const { data, isLoading, mutate: mutatePlans } = useSWRV("r/plans", () => client.plans.plansList())
const { data, isLoading, mutate: mutatePlans } = useSWRV("r/plans", client.plans.plansList)
watch(data, (newValue) => {
if (newValue) {