fix nav links
continuous-integration/drone/push Build is passing Details

This commit is contained in:
garionion 2021-05-19 18:02:44 +02:00
parent ca085b3cce
commit c7853ba612
Signed by: garionion
GPG Key ID: 53352FA607FA681A
2 changed files with 6 additions and 5 deletions

View File

@ -10,7 +10,8 @@
>
<v-list dense>
<template v-for="item in items">
<v-list-tile :key="item.text" ripple :to="item.to">
<v-list-tile :key="item.text" ripple>
<a :href="item.to">
<v-list-tile-action>
<v-icon dark>{{ item.icon }}</v-icon>
</v-list-tile-action>
@ -19,6 +20,7 @@
{{ item.title }}
</v-list-tile-title>
</v-list-tile-content>
</a>
</v-list-tile>
</template>
</v-list>
@ -112,12 +114,12 @@ export default {
{
icon: 'videocam',
title: 'ISWIsion Live',
to: '/'
to: './'
},
{
icon: 'event_seat',
title: 'Cultural Events',
to: '/cultural-events'
to: './cultural-events'
},
{
icon: 'event',
@ -127,7 +129,7 @@ export default {
{
icon: 'bubble_chart',
title: 'about',
to: '/about'
to: './about'
},
],
miniVariant: false,

View File

@ -3,7 +3,6 @@ import pkg from './package'
export default {
mode: 'universal',
target: 'static',
/*
** Headers of the page
*/