removed console statement

This commit is contained in:
Moriz Wahl 2020-03-19 14:30:32 +01:00
parent 1c43d5fe6f
commit e7d0e1b61e

View File

@ -86,7 +86,6 @@
}, },
data() { data() {
const { hashtag = null } = this.$route.query const { hashtag = null } = this.$route.query
console.log(this.$route.query)
return { return {
posts: [], posts: [],
hasMore: true, hasMore: true,
@ -133,7 +132,7 @@
}, },
watch: { watch: {
'$route.query.hashtag'() { '$route.query.hashtag'() {
this.hashtag = this.$route.query.hashtag this.hashtag = this.$route.query.hashtag ? this.$route.query.hashtag : null
}, },
}, },
methods: { methods: {