Переглянути джерело

If not logged in redirect from new thread page to / and show account modal

sbkwgh 8 роки тому
батько
коміт
f8ff1a3f57
1 змінених файлів з 8 додано та 0 видалено
  1. 8 0
      src/components/routes/ThreadNew.vue

+ 8 - 0
src/components/routes/ThreadNew.vue

@@ -83,6 +83,14 @@
 					})
 				})
 			}
+		},
+		beforeRouteEnter (to, from, next) {
+			next(vm => {
+				if(!vm.$store.state.username) {
+					vm.$store.commit('setAccountModalState', true);
+					next('/')
+				}
+			})
 		}
 	}
 </script>