'How to display specific DOM only in local?
.env
APP_ENV=local
data() {
return {
appEnv: process.env.APP_ENV,
only for local set up, I want to display this debugging section.
<v-col v-if="appEnv == 'local'" cols="6" sm="6" md="9">{{ urlGroups }} </v-col>
I see no error on console, but I also see nothing render from {{appEnv}}
What did I miss ?
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
