This commit is contained in:
parent
ca085b3cce
commit
c7853ba612
|
@ -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,
|
||||
|
|
|
@ -3,7 +3,6 @@ import pkg from './package'
|
|||
|
||||
export default {
|
||||
mode: 'universal',
|
||||
target: 'static',
|
||||
/*
|
||||
** Headers of the page
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue