Skip to content

Commit

Permalink
Minor Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
yossTheDev committed Aug 28, 2023
1 parent 1be1c2d commit c84f8dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,12 @@ const moveTo = (path: string) => {
@backdropclick="$router.replace({ name: route.name! })"
>
<k-page>
<k-navbar large title="Prossa"> </k-navbar>
<k-navbar large title="Prossa"></k-navbar>

<kMenuList>
<kMenuListItem
@click="() => moveTo('/')"
:active="$route.path === '/'"
:active="$route.name === '/'"
title="Home"
>
<template #media>
Expand All @@ -90,7 +90,7 @@ const moveTo = (path: string) => {

<kMenuListItem
@click="() => moveTo('/about')"
:active="$route.path === '/about'"
:active="$route.name === 'about'"
title="About"
>
<template #media>
Expand Down

0 comments on commit c84f8dc

Please sign in to comment.