mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-23 22:53:08 +02:00
🍕
This commit is contained in:
parent
94ce658ab9
commit
2ef78bcd40
1 changed files with 5 additions and 1 deletions
|
@ -17,7 +17,11 @@ export default Vue.extend({
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
onSubmit() {
|
onSubmit() {
|
||||||
location.href = `/search?q=${encodeURIComponent(this.q)}`;
|
if (this.q.startsWith('#')) {
|
||||||
|
this.$router.push(`/tags/${encodeURIComponent(this.q.substr(1))}`);
|
||||||
|
} else {
|
||||||
|
this.$router.push(`/search?q=${encodeURIComponent(this.q)}`);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue