Browse Source

redirect to presentation if never visited

axolotle 3 năm trước cách đây
mục cha
commit
32827889a9
1 tập tin đã thay đổi với 6 bổ sung0 xóa
  1. 6 0
      src/App.vue

+ 6 - 0
src/App.vue

@@ -23,6 +23,12 @@ export default {
     NodesHistory
   },
 
+  created () {
+    if (!this.$store.state.pages.visited) {
+      this.$router.push({ name: 'introduction' })
+    }
+  },
+
   metaInfo () {
     return {
       // if no subcomponents specify a metaInfo.title, try to get one from the route name.