Comment clearification

This commit is contained in:
Wolfgang Huß 2019-09-13 13:07:12 +02:00 committed by roschaefer
parent 82d5ac99df
commit ee8ce5a153

View File

@ -6,7 +6,7 @@
export default { export default {
mounted() { mounted() {
let { id: hashtag } = this.$route.params let { id: hashtag } = this.$route.params
// 'hashtag' seems automatically 'decodeURI' on macOS Firefox. Don't know if this is always the case. // 'hashtag' seems automatically to be 'decodeURI' (on macOS Firefox). Don't know if this is always the case.
this.$router.push({ path: '/', query: { hashtag: encodeURI(hashtag) } }) this.$router.push({ path: '/', query: { hashtag: encodeURI(hashtag) } })
}, },
} }