diff --git a/src/components/MainMenu.vue b/src/components/MainMenu.vue
index 6220b63..bbd1691 100644
--- a/src/components/MainMenu.vue
+++ b/src/components/MainMenu.vue
@@ -21,11 +21,11 @@
{{ link.title }}
@@ -41,38 +41,32 @@
export default {
data: function () {
return {
+ activeTab: 0,
open: false,
-
links: [
{
title: 'Home',
href: '#0',
- active: true,
},
{
title: 'Drupal',
href: 'https://www.drupal.org',
- active: false,
},
{
title: 'Vue.js',
href: 'https://vuejs.org',
- active: false,
},
{
title: 'Tailwind CSS',
href: 'https://tailwindcss.com',
- active: false,
},
{
title: 'View code on GitHub',
href: 'https://github.com/opdavies/rebuilding-bartik',
- active: false,
},
// {
// title: 'Read blog post',
// href: 'https://github.com/opdavies/rebuilding-bartik',
- // active: false,
// },
]
}