fix: search MFM not working

This commit is contained in:
naskya 2023-09-21 07:43:18 +00:00
parent 6e8aa76f2d
commit eb7c9cb895

View File

@ -22,7 +22,7 @@ const props = defineProps<{
const query = ref(props.q);
const search = () => {
router.push(`/search/${query.value}`);
router.push(`/search?q=${query.value}`);
};
</script>