Use laravel .env variable in Vue.js
Example .env file:
MIX_API_URL="http://example.com/api/v1"
To use laravel .env variable in Vue.js we simply call
process.env.MIX_API_URL
In the real world, it will look like so
data() {
return() {
api_key: process.env.MIX_API_URL
}
}
We can now use the laravel .env file to host and use any variables we don't want to store in javascript.