itube-specs 0.0.377 → 0.0.379
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
v-for="(group, index) in groups"
|
|
10
10
|
:key="`filter-group-${index}`"
|
|
11
11
|
class="s-filter-page__group"
|
|
12
|
-
:open="index === 0 || activeGroup ===
|
|
12
|
+
:open="index === 0 || activeGroup === group.order"
|
|
13
13
|
>
|
|
14
14
|
<summary
|
|
15
15
|
v-if="filters.length > 0"
|
|
@@ -91,7 +91,6 @@ const props = defineProps<{
|
|
|
91
91
|
const { t } = useI18n();
|
|
92
92
|
const route = useRoute();
|
|
93
93
|
const router = useRouter();
|
|
94
|
-
|
|
95
94
|
const activeGroup = computed(() => Number(route.query[ 'group' ]));
|
|
96
95
|
|
|
97
96
|
const groups = computed(() => {
|
package/package.json
CHANGED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<NuxtLink
|
|
3
|
-
class="s-chips-image"
|
|
4
|
-
:to="link"
|
|
5
|
-
>
|
|
6
|
-
<SImg
|
|
7
|
-
class="s-chips-image__img"
|
|
8
|
-
sizes="20px sm:24px"
|
|
9
|
-
:src="image"
|
|
10
|
-
width="20"
|
|
11
|
-
height="20"
|
|
12
|
-
:alt="title"
|
|
13
|
-
/>
|
|
14
|
-
{{ title }}
|
|
15
|
-
</NuxtLink>
|
|
16
|
-
</template>
|
|
17
|
-
|
|
18
|
-
<script setup lang="ts">
|
|
19
|
-
defineProps<{
|
|
20
|
-
image: string
|
|
21
|
-
title: string
|
|
22
|
-
link: string
|
|
23
|
-
}>()
|
|
24
|
-
</script>
|