diff --git a/assets/js/components/Navbar.vue b/assets/js/components/Navbar.vue index f21630456..ed7114444 100644 --- a/assets/js/components/Navbar.vue +++ b/assets/js/components/Navbar.vue @@ -2,12 +2,10 @@
-
- {{ siteName }} -
+
{{ siteName }}
-
@@ -15,20 +13,18 @@
@@ -56,9 +52,9 @@ export default { data() { return { - mobileNavHidden: true, + hidden: true, - navItems: [ + items: [ { title: 'About', href: '/', @@ -83,9 +79,9 @@ export default { title: 'Contact', href: '/contact', pattern: '^/contact/?', - } - ] + }, + ], } - } + }, }