@icvdeveloper/common-module 2.2.1 → 2.2.2
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.
package/CHANGELOG.md
CHANGED
package/dist/module.json
CHANGED
|
@@ -204,17 +204,26 @@ const emitStreamTest = (): void => {
|
|
|
204
204
|
<nuxt-link
|
|
205
205
|
v-if="item.slug == 'stream-test'"
|
|
206
206
|
:class="['cursor-pointer', classBinding(classObject, 'navigationItemLink', 'nav-link')]"
|
|
207
|
-
@click.enter="
|
|
207
|
+
@click.enter="emitStreamTest"
|
|
208
208
|
>
|
|
209
209
|
{{ item.label }}
|
|
210
210
|
</nuxt-link>
|
|
211
211
|
<nuxt-link
|
|
212
|
-
v-if="
|
|
212
|
+
v-else-if="item.slug == 'search' && isSearchEnabled"
|
|
213
213
|
:class="['cursor-pointer', classBinding(classObject, 'navigationItemLink', 'nav-link')]"
|
|
214
214
|
@click.enter="emitSearchModal"
|
|
215
215
|
>
|
|
216
216
|
{{ item.label }}
|
|
217
217
|
</nuxt-link>
|
|
218
|
+
<nuxt-link
|
|
219
|
+
v-else
|
|
220
|
+
:to="formatLink(item)"
|
|
221
|
+
exact
|
|
222
|
+
:class="classBinding(classObject, 'navigationItemLink', 'nav-link')"
|
|
223
|
+
@click.enter="toggleMenu"
|
|
224
|
+
>
|
|
225
|
+
{{ item.label }}
|
|
226
|
+
</nuxt-link>
|
|
218
227
|
</template>
|
|
219
228
|
<nuxt-link
|
|
220
229
|
v-else
|