Skip to content

Instantly share code, notes, and snippets.

@uno-de-piera
Created April 22, 2018 07:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uno-de-piera/0394ff08bf6b6c99adb364fd80f0a831 to your computer and use it in GitHub Desktop.
Save uno-de-piera/0394ff08bf6b6c99adb364fd80f0a831 to your computer and use it in GitHub Desktop.
<template>
<div>{{ url }}
</template>
<script>
export default {
data () {
return {
url: null
}
},
mounted () {
this.url = process.env.MIX_APP_URL;
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment