Skip to content

Instantly share code, notes, and snippets.

@whoami15
Forked from reinink/MyHead.vue
Created June 1, 2021 16:49
Show Gist options
  • Save whoami15/4d7a9f2c390740c0f89f8ac7e5448024 to your computer and use it in GitHub Desktop.
Save whoami15/4d7a9f2c390740c0f89f8ac7e5448024 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