diff --git a/frontend/pages/recipe/_slug/index.vue b/frontend/pages/recipe/_slug/index.vue index 594a58a956b..441652ddb84 100644 --- a/frontend/pages/recipe/_slug/index.vue +++ b/frontend/pages/recipe/_slug/index.vue @@ -22,5 +22,12 @@ export default defineComponent({ loading, }; }, + head() { + if (this.recipe) { + return { + title: this.recipe.name + } + } + } });