aggiunto il link home

This commit is contained in:
fabio 2026-03-01 20:50:02 +01:00
parent 66a3cc7cdb
commit 25f4701b54
2 changed files with 10 additions and 0 deletions

Binary file not shown.

View File

@ -13,6 +13,15 @@
<q-drawer v-model="leftDrawerOpen" show-if-above bordered>
<q-list>
<q-item-label header> items list </q-item-label>
<q-item
clickable
tag="a"
:href="homeLink"
>
<q-item-section>Home</q-item-section>
</q-item>
<q-item
clickable
tag="a"
@ -43,6 +52,7 @@ const leftDrawerOpen = ref(false);
const siteUrl = (process.env.SITE_URL || '').replace(/\/+$/, '');
const privateLink = `${siteUrl}/private`;
const adminLink = `${siteUrl}/admin`;
const homeLink = `${siteUrl}/`;
function toggleLeftDrawer() {
leftDrawerOpen.value = !leftDrawerOpen.value;