Created
February 25, 2018 18:25
-
-
Save techlab23/1ad9c6d11b1339c44cfbf1a9d8021f67 to your computer and use it in GitHub Desktop.
Default home page to show - build time variables
This file contains 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> | |
<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