mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2024-12-04 17:58:06 +09:00
🍕
This commit is contained in:
parent
15dcfe1627
commit
29fdd1de50
@ -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 New Issue
Block a user