aboutsummaryrefslogtreecommitdiff
path: root/src/main.js
diff options
context:
space:
mode:
authorRoger Braun <roger@rogerbraun.net>2016-11-06 20:26:07 +0100
committerRoger Braun <roger@rogerbraun.net>2016-11-06 20:26:07 +0100
commitb6ac99fdf07a58efe331c82905c513ca7ceb75e1 (patch)
tree420b688630f8fd4dfc402c74de2cdbe2562bf8d2 /src/main.js
parent1ae5223742415d69d3b6ec9fd46d04c85d8f787b (diff)
Use history routing.
Diffstat (limited to 'src/main.js')
-rw-r--r--src/main.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main.js b/src/main.js
index f95d286f..7f917128 100644
--- a/src/main.js
+++ b/src/main.js
@@ -24,7 +24,10 @@ const routes = [
{ path: '/main/friends', component: FriendsTimeline }
]
-const router = new VueRouter({routes})
+const router = new VueRouter({
+ mode: 'history',
+ routes
+})
/* eslint-disable no-new */
new Vue({