fix search

This commit is contained in:
ThatOneCalculator 2022-07-19 21:53:08 -07:00
parent fc055d7bd5
commit 429c5b2cbc

View file

@ -15,7 +15,7 @@ const props = defineProps<{
const query = ref(props.q);
const search = () => {
window.open(`https://www.google.com/search?q=${query.value}`, '_blank');
window.open(`https://search.annoyingorange.xyz/search?q=${query.value}`, '_blank');
};
</script>