Skip to content

Instantly share code, notes, and snippets.

@techlab23
Created February 25, 2018 18:25
Show Gist options
  • Save techlab23/1ad9c6d11b1339c44cfbf1a9d8021f67 to your computer and use it in GitHub Desktop.
Save techlab23/1ad9c6d11b1339c44cfbf1a9d8021f67 to your computer and use it in GitHub Desktop.
Default home page to show - build time variables
<template>
<v-container fluid>
<v-slide-y-transition mode="out-in">
<v-layout column align-center>
<blockquote>
<div>PROJECT_ID: {{ getEnvironment.PROJECT_ID }} </div>
<div>AUTH_DOMAIN: {{ getEnvironment.AUTH_DOMAIN }} </div>
</blockquote>
</v-layout>
</v-slide-y-transition>
</v-container>
</template>
<script>
export default {
computed: {
getEnvironment () {
return process.env
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment