I am struggling to add the forum post as the title for when someone clicks on the forum post. It appears I need to add it to the blade file rather than Vue. So in summary need to pass from Vue to the blade which displays everything.
Using Laravel Jetstream
app.blade.php
<title inertia>{{ config('app.name', 'Laravel') }}</title>
In source:
<title inertia>Daily Forum Post</title>
App.vue
<Head :title="title" />
export default {
props: {
title: String,
Shows correct title, but not in source.
Tried passing the variable with no luck, also tried using vue meta with no luck