This commit is contained in:
parent
ca085b3cce
commit
c7853ba612
|
@ -10,7 +10,8 @@
|
||||||
>
|
>
|
||||||
<v-list dense>
|
<v-list dense>
|
||||||
<template v-for="item in items">
|
<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-list-tile-action>
|
||||||
<v-icon dark>{{ item.icon }}</v-icon>
|
<v-icon dark>{{ item.icon }}</v-icon>
|
||||||
</v-list-tile-action>
|
</v-list-tile-action>
|
||||||
|
@ -19,6 +20,7 @@
|
||||||
{{ item.title }}
|
{{ item.title }}
|
||||||
</v-list-tile-title>
|
</v-list-tile-title>
|
||||||
</v-list-tile-content>
|
</v-list-tile-content>
|
||||||
|
</a>
|
||||||
</v-list-tile>
|
</v-list-tile>
|
||||||
</template>
|
</template>
|
||||||
</v-list>
|
</v-list>
|
||||||
|
@ -112,12 +114,12 @@ export default {
|
||||||
{
|
{
|
||||||
icon: 'videocam',
|
icon: 'videocam',
|
||||||
title: 'ISWIsion Live',
|
title: 'ISWIsion Live',
|
||||||
to: '/'
|
to: './'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: 'event_seat',
|
icon: 'event_seat',
|
||||||
title: 'Cultural Events',
|
title: 'Cultural Events',
|
||||||
to: '/cultural-events'
|
to: './cultural-events'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
icon: 'event',
|
icon: 'event',
|
||||||
|
@ -127,7 +129,7 @@ export default {
|
||||||
{
|
{
|
||||||
icon: 'bubble_chart',
|
icon: 'bubble_chart',
|
||||||
title: 'about',
|
title: 'about',
|
||||||
to: '/about'
|
to: './about'
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
miniVariant: false,
|
miniVariant: false,
|
||||||
|
|
|
@ -3,7 +3,6 @@ import pkg from './package'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
mode: 'universal',
|
mode: 'universal',
|
||||||
target: 'static',
|
|
||||||
/*
|
/*
|
||||||
** Headers of the page
|
** Headers of the page
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue