[Vuejs]-Integrate vue in a template with vars / props

0👍

You talk about different environment mode. You should read this documentation about how to start vue app with different env mode.

You can define different .env files for each mode and populate process.env with this file, or you can start vue.js with NODE_ENV=development per example, and check for process.env.NODE_ENV where you need to pass appropriate variables.

Leave a comment