aggiunto il link home
This commit is contained in:
parent
66a3cc7cdb
commit
25f4701b54
Binary file not shown.
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue