Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ulfgebhardt committed Nov 23, 2023
1 parent 46fcc02 commit c81bdcd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/app/index.page.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<DefaultLayout>
<template #sidemenu>
<v-list rounded>
<v-list-item link title="Value" :active="page === undefined" href="/app"></v-list-item>
<v-list-item link title="Value" :active="page === null" href="/app"></v-list-item>
<v-list-item link title="Increase" :active="page === 'inc'" href="/app/inc"></v-list-item>

<v-divider class="my-2"></v-divider>
Expand All @@ -11,7 +11,7 @@
</template>

<template #default>
<div v-if="page === undefined">
<div v-if="page === null">
<h1>The Counter</h1>
<p>
The current value of the counter is:
Expand Down Expand Up @@ -42,5 +42,5 @@ import DefaultLayout from '#layouts/DefaultLayout.vue'
import { useCounterStore } from '#stores/counter'
const counter = useCounterStore()
defineProps(['page'])
defineProps({ page: { type: String, default: null } })
</script>

0 comments on commit c81bdcd

Please sign in to comment.