aboutsummaryrefslogtreecommitdiffstats
path: root/components/Nav.vue
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.com>2025-01-20 13:22:57 +0000
committerLeonardo Bishop <me@leonardobishop.com>2025-01-20 13:22:57 +0000
commit38f49e94cfe2a0340a30919a8ce02f40cef31706 (patch)
treecb02cb16cc9b29d01e9125566556bc1d0b50c2f3 /components/Nav.vue
parente8f15e5a9e329bfc519cd8a271f3ed6ab6835646 (diff)
PWA-ify
Diffstat (limited to 'components/Nav.vue')
-rw-r--r--components/Nav.vue2
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>