Skip to content

Instantly share code, notes, and snippets.

@ynechaev
Created March 13, 2021 19:27
Show Gist options
  • Save ynechaev/f129d0dd1a25d7a09ffe65500023c6e9 to your computer and use it in GitHub Desktop.
Save ynechaev/f129d0dd1a25d7a09ffe65500023c6e9 to your computer and use it in GitHub Desktop.
Subdomain index vue test page
<template>
<div>
<h1>subdomain host: {{ this.host }}</h1>
</div>
</template>
<script>
export default {
async asyncData({ req }) {
if (process.server) {
const host = req.headers.host
return { host }
}
},
data() {
return {
host: null
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment