diff --git a/stubs/inertia/resources/js/Components/PageHeader.vue b/stubs/inertia/resources/js/Components/PageHeader.vue new file mode 100644 index 000000000..ef3982759 --- /dev/null +++ b/stubs/inertia/resources/js/Components/PageHeader.vue @@ -0,0 +1,18 @@ + + + diff --git a/stubs/inertia/resources/js/Layouts/AppLayout.vue b/stubs/inertia/resources/js/Layouts/AppLayout.vue index 65c86d232..8adbd028a 100644 --- a/stubs/inertia/resources/js/Layouts/AppLayout.vue +++ b/stubs/inertia/resources/js/Layouts/AppLayout.vue @@ -1,6 +1,6 @@ diff --git a/stubs/inertia/resources/js/Pages/Dashboard.vue b/stubs/inertia/resources/js/Pages/Dashboard.vue index d2c067ff1..39ca0511d 100644 --- a/stubs/inertia/resources/js/Pages/Dashboard.vue +++ b/stubs/inertia/resources/js/Pages/Dashboard.vue @@ -1,22 +1,25 @@ diff --git a/stubs/inertia/resources/js/Pages/Profile/Show.vue b/stubs/inertia/resources/js/Pages/Profile/Show.vue index 1d4a4ae4d..952e46844 100644 --- a/stubs/inertia/resources/js/Pages/Profile/Show.vue +++ b/stubs/inertia/resources/js/Pages/Profile/Show.vue @@ -6,6 +6,11 @@ import SectionBorder from '@/Components/SectionBorder.vue'; import TwoFactorAuthenticationForm from '@/Pages/Profile/Partials/TwoFactorAuthenticationForm.vue'; import UpdatePasswordForm from '@/Pages/Profile/Partials/UpdatePasswordForm.vue'; import UpdateProfileInformationForm from '@/Pages/Profile/Partials/UpdateProfileInformationForm.vue'; +import PageHeader from "@/Components/PageHeader.vue"; + +defineOptions({ + layout: AppLayout, +}) defineProps({ confirmsTwoFactorAuthentication: Boolean, @@ -14,44 +19,42 @@ defineProps({ diff --git a/stubs/inertia/resources/js/Pages/Teams/Create.vue b/stubs/inertia/resources/js/Pages/Teams/Create.vue index 8cdd4526f..b22afdc22 100644 --- a/stubs/inertia/resources/js/Pages/Teams/Create.vue +++ b/stubs/inertia/resources/js/Pages/Teams/Create.vue @@ -1,20 +1,23 @@ diff --git a/stubs/inertia/resources/js/Pages/Teams/Show.vue b/stubs/inertia/resources/js/Pages/Teams/Show.vue index d22fe0ecc..f357d8e6e 100644 --- a/stubs/inertia/resources/js/Pages/Teams/Show.vue +++ b/stubs/inertia/resources/js/Pages/Teams/Show.vue @@ -4,6 +4,11 @@ import DeleteTeamForm from '@/Pages/Teams/Partials/DeleteTeamForm.vue'; import SectionBorder from '@/Components/SectionBorder.vue'; import TeamMemberManager from '@/Pages/Teams/Partials/TeamMemberManager.vue'; import UpdateTeamNameForm from '@/Pages/Teams/Partials/UpdateTeamNameForm.vue'; +import PageHeader from "@/Components/PageHeader.vue"; + +defineOptions({ + layout: AppLayout, +}) defineProps({ team: Object, @@ -13,30 +18,28 @@ defineProps({