diff options
Diffstat (limited to 'components/Nav.vue')
| -rw-r--r-- | components/Nav.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/Nav.vue b/components/Nav.vue index 872d791..6ab4c9f 100644 --- a/components/Nav.vue +++ b/components/Nav.vue @@ -26,7 +26,7 @@ route.afterEach(() => { <ul class="nav-list"> <li v-for="item in navList" :key="item.title" :class="{ active: $route.path === item.path }"> <NuxtLink :to="item.path"> - <span>{{ item.title }}</span> <Spinner v-if="item.navigating" color="var(--color-text-muted)" size="16"/></NuxtLink> + <span>{{ item.title }}</span> <Spinner v-if="item.navigating" color="var(--color-text-muted)" :size="16"/></NuxtLink> </li> </ul> |
