Add front-end messages to inform when demo mode is On

This commit is contained in:
Bubka
2020-03-18 15:04:34 +01:00
parent f7a69d8197
commit 88b029bed4
7 changed files with 26 additions and 20 deletions

View File

@ -1,7 +1,12 @@
<template>
<main class="main-section">
<router-view></router-view>
</main>
<div>
<div v-if="$appSettings.isDemoApp" class="demo has-background-warning has-text-centered is-size-7-mobile">
{{ $t('commons.demo_do_not_post_sensitive_data') }}
</div>
<main class="main-section">
<router-view></router-view>
</main>
</div>
</template>
<script>