fix: missing recipe page title (#2662)

This commit is contained in:
Kuchenpirat 2023-10-19 18:28:30 +02:00 committed by GitHub
parent 13f0fcb082
commit 08b6f3b70a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,5 +22,12 @@ export default defineComponent({
loading, loading,
}; };
}, },
head() {
if (this.recipe) {
return {
title: this.recipe.name
}
}
}
}); });
</script> </script>