This commit is contained in:
Henry Jameson 2022-08-31 00:58:03 +03:00
parent 98f97ff9a9
commit 73abae1b3e
2 changed files with 5 additions and 5 deletions

View File

@ -1,8 +1,8 @@
<template>
<OptionalRouterLink
v-slot="{ isActive, href, navigate } = {}"
ass="ass"
:to="routeTo"
v-slot="{ isActive, href, navigate } = {}"
>
<li
class="NavigationEntry menu-item"
@ -10,8 +10,8 @@
v-bind="$attrs"
>
<component
class="main-link button-unstyled"
:is="routeTo ? 'a' : 'button'"
class="main-link button-unstyled"
:href="href"
@click="navigate"
>
@ -29,7 +29,7 @@
>{{ item.iconLetter }}
</span>
<span class="label">
{{ item.labelRaw || $t(item.label) }}
{{ item.labelRaw || $t(item.label) }}
</span>
</component>
<slot />

View File

@ -1,10 +1,10 @@
<template>
<!-- eslint-disable vue/no-multiple-template-root -->
<!-- eslint-disable vue/no-multiple-template-root -->
<router-link
v-if="to"
v-slot="props"
:to="to"
custom
v-slot="props"
>
<slot
v-bind="props"