-
-
Save whoami15/4d7a9f2c390740c0f89f8ac7e5448024 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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