Skip to content

Instantly share code, notes, and snippets.

@reinink
Created June 1, 2021 15:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save reinink/6a0831e608f971ad5ec374824f3f210c to your computer and use it in GitHub Desktop.
Save reinink/6a0831e608f971ad5ec374824f3f210c to your computer and use it in GitHub Desktop.
<template>
<inertia-head>
<title v-if="title">{{ title }} - My App</title>
<title v-else>My App</title>
<slot />
</inertia-head>
</template>
<script>
export default {
props: {
title: String,
},
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment