VUE CLI-3 Project not working on IE-11

I finally ended up with the solution of above issue. To run project on IE-11 version just follow the 2 steps: Install babel-polyfill using command “npm install –save babel-polyfill”. Import babel-polyfill in your main.js or index.js file at the top of above all imported packages. For e.g Here is your main.js file. Note: If you … Read more

Using Environment Variables with Vue.js

Vue.js with Webpack If you use vue cli with the Webpack template (default config), you can create and add your environment variables to a .env file. The variables will automatically be accessible under process.env.variableName in your project. Loaded variables are also available to all vue-cli-service commands, plugins and dependencies. You have a few options, this … Read more