1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-04 10:46:09 +02:00
This commit is contained in:
syuilo
2018-06-10 12:21:44 +09:00
parent 94ce658ab9
commit 2ef78bcd40

View File

@@ -17,7 +17,11 @@ export default Vue.extend({
},
methods: {
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)}`);
}
}
}
});